summaryrefslogtreecommitdiff
path: root/db/migrate/20111120180020_create_call_forwards.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20111120180020_create_call_forwards.rb')
-rw-r--r--db/migrate/20111120180020_create_call_forwards.rb25
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