summaryrefslogtreecommitdiff
path: root/db/migrate/20120821105942_create_automatic_call_distributors.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20120821105942_create_automatic_call_distributors.rb')
-rw-r--r--db/migrate/20120821105942_create_automatic_call_distributors.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/db/migrate/20120821105942_create_automatic_call_distributors.rb b/db/migrate/20120821105942_create_automatic_call_distributors.rb
new file mode 100644
index 0000000..6bfa921
--- /dev/null
+++ b/db/migrate/20120821105942_create_automatic_call_distributors.rb
@@ -0,0 +1,22 @@
+class CreateAutomaticCallDistributors < ActiveRecord::Migration
+ def self.up
+ create_table :automatic_call_distributors do |t|
+ t.string :uuid
+ t.string :name
+ t.string :strategy
+ t.string :automatic_call_distributorable_type
+ t.integer :automatic_call_distributorable_id
+ t.integer :max_callers
+ t.integer :agent_timeout
+ t.integer :retry_timeout
+ t.string :join
+ t.string :leave
+ t.integer :gs_node_id
+ t.timestamps
+ end
+ end
+
+ def self.down
+ drop_table :automatic_call_distributors
+ end
+end