diff options
Diffstat (limited to 'db/migrate/20111106081300_create_fifo_bridge.rb')
-rw-r--r-- | db/migrate/20111106081300_create_fifo_bridge.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20111106081300_create_fifo_bridge.rb b/db/migrate/20111106081300_create_fifo_bridge.rb new file mode 100644 index 0000000..090d0d7 --- /dev/null +++ b/db/migrate/20111106081300_create_fifo_bridge.rb @@ -0,0 +1,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 |