From b80bd744ad873f6fc43018bc4bfb90677de167bd Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Mon, 17 Dec 2012 12:01:45 +0100 Subject: Start of GS5. --- db/migrate/20111120180020_create_call_forwards.rb | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 db/migrate/20111120180020_create_call_forwards.rb (limited to 'db/migrate/20111120180020_create_call_forwards.rb') 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 -- cgit v1.2.3