summaryrefslogtreecommitdiff
path: root/db/migrate/20190613030606_enable_hashed_storage_by_default.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190613030606_enable_hashed_storage_by_default.rb')
-rw-r--r--db/migrate/20190613030606_enable_hashed_storage_by_default.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20190613030606_enable_hashed_storage_by_default.rb b/db/migrate/20190613030606_enable_hashed_storage_by_default.rb
new file mode 100644
index 00000000000..8edefd1273e
--- /dev/null
+++ b/db/migrate/20190613030606_enable_hashed_storage_by_default.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class EnableHashedStorageByDefault < ActiveRecord::Migration[5.1]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ change_column_default :application_settings, :hashed_storage_enabled, true
+ end
+
+ def down
+ change_column_default :application_settings, :hashed_storage_enabled, false
+ end
+end