summaryrefslogtreecommitdiff
path: root/db/migrate/20170427215854_create_redirect_routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170427215854_create_redirect_routes.rb')
-rw-r--r--db/migrate/20170427215854_create_redirect_routes.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20170427215854_create_redirect_routes.rb b/db/migrate/20170427215854_create_redirect_routes.rb
new file mode 100644
index 00000000000..2bf086b3e30
--- /dev/null
+++ b/db/migrate/20170427215854_create_redirect_routes.rb
@@ -0,0 +1,14 @@
+class CreateRedirectRoutes < ActiveRecord::Migration
+ # Set this constant to true if this migration requires downtime.
+ DOWNTIME = false
+
+ def change
+ create_table :redirect_routes do |t|
+ t.integer :source_id, null: false
+ t.string :source_type, null: false
+ t.string :path, null: false
+
+ t.timestamps null: false
+ end
+ end
+end