blob: e7d146eddc29a2d11d76e6327213f94d66561a25 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | class CreateCallthroughs < ActiveRecord::Migration
  def self.up
    create_table :callthroughs do |t|
      t.integer :tenant_id
      t.string :name
      t.integer :sip_account_id
      t.string :clip_no_screening
      t.timestamps
    end
  end
  def self.down
    drop_table :callthroughs
  end
end
 |