diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:01:45 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:01:45 +0100 |
commit | b80bd744ad873f6fc43018bc4bfb90677de167bd (patch) | |
tree | 072c4b0e33d442528555b82c415f5e7a1712b2b0 /db/migrate/20111120180020_create_call_forwards.rb | |
parent | 3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff) |
Start of GS5.
Diffstat (limited to 'db/migrate/20111120180020_create_call_forwards.rb')
-rw-r--r-- | db/migrate/20111120180020_create_call_forwards.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/db/migrate/20111120180020_create_call_forwards.rb b/db/migrate/20111120180020_create_call_forwards.rb new file mode 100644 index 0000000..e8795eb --- /dev/null +++ b/db/migrate/20111120180020_create_call_forwards.rb @@ -0,0 +1,25 @@ +class CreateCallForwards < ActiveRecord::Migration + + def self.up + create_table :call_forwards do |t| + t.integer :sip_account_id + t.integer :call_forward_case_id + t.integer :timeout + t.string :destination + t.string :source + t.boolean :active + t.timestamps + end + add_index( :call_forwards, :sip_account_id, { + :name => "call_forwards_sip_account_index", + }) + end + + def self.down + remove_index( :call_forwards, { + :name => "call_forwards_sip_account_index", + }) + drop_table :call_forwards + end + +end |