summaryrefslogtreecommitdiff
path: root/db/migrate/20180109183319_change_default_value_for_pages_https_only.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20180109183319_change_default_value_for_pages_https_only.rb')
-rw-r--r--db/migrate/20180109183319_change_default_value_for_pages_https_only.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20180109183319_change_default_value_for_pages_https_only.rb b/db/migrate/20180109183319_change_default_value_for_pages_https_only.rb
new file mode 100644
index 00000000000..c242e1b0d24
--- /dev/null
+++ b/db/migrate/20180109183319_change_default_value_for_pages_https_only.rb
@@ -0,0 +1,13 @@
+class ChangeDefaultValueForPagesHttpsOnly < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ change_column_default :projects, :pages_https_only, true
+ end
+
+ def down
+ change_column_default :projects, :pages_https_only, nil
+ end
+end