summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210105052229_clean_up_asset_proxy_whitelist_rename_on_application_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210105052229_clean_up_asset_proxy_whitelist_rename_on_application_settings.rb')
-rw-r--r--db/post_migrate/20210105052229_clean_up_asset_proxy_whitelist_rename_on_application_settings.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/post_migrate/20210105052229_clean_up_asset_proxy_whitelist_rename_on_application_settings.rb b/db/post_migrate/20210105052229_clean_up_asset_proxy_whitelist_rename_on_application_settings.rb
deleted file mode 100644
index 87f391e240d..00000000000
--- a/db/post_migrate/20210105052229_clean_up_asset_proxy_whitelist_rename_on_application_settings.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class CleanUpAssetProxyWhitelistRenameOnApplicationSettings < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers::V2
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- # This migration has been made a no-op in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56352
- # because to revert the rename in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55419 we need
- # to cleanup the triggers on the `asset_proxy_allowlist` column. As such, this migration would do nothing.
- end
-
- def down
- # no-op
- end
-end