summaryrefslogtreecommitdiff
path: root/db/migrate/20111120180020_create_call_forwards.rb
blob: e8795eb09bbb5d191b3d95785f58677a8ab14261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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