blob: 090d0d7ae0f6e7b7c129313a051bd571a6ac0435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class CreateFifoBridge < ActiveRecord::Migration
def self.up
create_table :fifo_bridge, :id => false do |t|
t.string :fifo_name, :limit => '1024', :null => false
t.string :caller_uuid, :limit => '255', :null => false
t.string :caller_caller_id_name, :limit => '255', :null => false
t.string :caller_caller_id_number, :limit => '255', :null => false
t.string :consumer_uuid, :limit => '255', :null => false
t.string :consumer_outgoing_uuid, :limit => '255'
t.integer :bridge_start
end
end
def self.down
drop_table :fifo_bridge
end
end
|