diff options
Diffstat (limited to 'db/migrate/20111228194037_create_phone_sip_accounts.rb')
-rw-r--r-- | db/migrate/20111228194037_create_phone_sip_accounts.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20111228194037_create_phone_sip_accounts.rb b/db/migrate/20111228194037_create_phone_sip_accounts.rb new file mode 100644 index 0000000..7fd5e39 --- /dev/null +++ b/db/migrate/20111228194037_create_phone_sip_accounts.rb @@ -0,0 +1,14 @@ +class CreatePhoneSipAccounts < ActiveRecord::Migration + def self.up + create_table :phone_sip_accounts do |t| + t.integer :phone_id + t.integer :sip_account_id + t.integer :position + t.timestamps + end + end + + def self.down + drop_table :phone_sip_accounts + end +end |