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.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20170427215854_create_redirect_routes.rb b/db/migrate/20170427215854_create_redirect_routes.rb
deleted file mode 100644
index 069c9b39d37..00000000000
--- a/db/migrate/20170427215854_create_redirect_routes.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# rubocop:disable Migration/Timestamps
-class CreateRedirectRoutes < ActiveRecord::Migration[4.2]
- # 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