summaryrefslogtreecommitdiff
path: root/db/migrate/20130116133433_create_route_elements.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130116133433_create_route_elements.rb')
-rw-r--r--db/migrate/20130116133433_create_route_elements.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20130116133433_create_route_elements.rb b/db/migrate/20130116133433_create_route_elements.rb
new file mode 100644
index 0000000..72f6894
--- /dev/null
+++ b/db/migrate/20130116133433_create_route_elements.rb
@@ -0,0 +1,19 @@
+class CreateRouteElements < ActiveRecord::Migration
+ def self.up
+ create_table :route_elements do |t|
+ t.integer :call_route_id
+ t.string :var_in
+ t.string :var_out
+ t.string :pattern
+ t.string :replacement
+ t.string :action
+ t.boolean :mandatory
+ t.integer :position
+ t.timestamps
+ end
+ end
+
+ def self.down
+ drop_table :route_elements
+ end
+end