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, 0 insertions, 15 deletions
diff --git a/db/migrate/20190613030606_enable_hashed_storage_by_default.rb b/db/migrate/20190613030606_enable_hashed_storage_by_default.rb
deleted file mode 100644
index 8edefd1273e..00000000000
--- a/db/migrate/20190613030606_enable_hashed_storage_by_default.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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