summaryrefslogtreecommitdiff
path: root/db/migrate/20171204204233_add_permanent_to_redirect_route.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20171204204233_add_permanent_to_redirect_route.rb')
-rw-r--r--db/migrate/20171204204233_add_permanent_to_redirect_route.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20171204204233_add_permanent_to_redirect_route.rb b/db/migrate/20171204204233_add_permanent_to_redirect_route.rb
new file mode 100644
index 00000000000..f3ae471201e
--- /dev/null
+++ b/db/migrate/20171204204233_add_permanent_to_redirect_route.rb
@@ -0,0 +1,18 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class AddPermanentToRedirectRoute < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+ disable_ddl_transaction!
+
+ # Set this constant to true if this migration requires downtime.
+ DOWNTIME = false
+
+ def up
+ add_column(:redirect_routes, :permanent, :boolean)
+ end
+
+ def down
+ remove_column(:redirect_routes, :permanent)
+ end
+end