Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20200915044225_schedule_migration_to_hashed_storage.rb')
-rw-r--r--db/post_migrate/20200915044225_schedule_migration_to_hashed_storage.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/post_migrate/20200915044225_schedule_migration_to_hashed_storage.rb b/db/post_migrate/20200915044225_schedule_migration_to_hashed_storage.rb
deleted file mode 100644
index 553d060dc58..00000000000
--- a/db/post_migrate/20200915044225_schedule_migration_to_hashed_storage.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class ScheduleMigrationToHashedStorage < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
- DOWNTIME = false
- MIGRATION = 'MigrateToHashedStorage'
-
- disable_ddl_transaction!
-
- def up
- migrate_async(MIGRATION)
- end
-
- def down
- # NO-OP
- end
-end