summaryrefslogtreecommitdiff
path: root/db/migrate/20120821105942_create_automatic_call_distributors.rb
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
commitb80bd744ad873f6fc43018bc4bfb90677de167bd (patch)
tree072c4b0e33d442528555b82c415f5e7a1712b2b0 /db/migrate/20120821105942_create_automatic_call_distributors.rb
parent3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff)
Start of GS5.
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