summaryrefslogtreecommitdiff
path: root/db/migrate/20201103202213_update_packages_build_infos_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20201103202213_update_packages_build_infos_index.rb')
-rw-r--r--db/migrate/20201103202213_update_packages_build_infos_index.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/migrate/20201103202213_update_packages_build_infos_index.rb b/db/migrate/20201103202213_update_packages_build_infos_index.rb
deleted file mode 100644
index d737517045b..00000000000
--- a/db/migrate/20201103202213_update_packages_build_infos_index.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-class UpdatePackagesBuildInfosIndex < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- NEW_INDEX_NAME = 'idx_packages_build_infos_on_package_id'
- OLD_INDEX_NAME = 'index_packages_build_infos_on_package_id'
-
- def up
- add_concurrent_index :packages_build_infos, :package_id, name: NEW_INDEX_NAME
- remove_concurrent_index_by_name :packages_build_infos, OLD_INDEX_NAME
- end
-
- def down
- # No op. It is possible records would validate the UNIQUE constraint, so it
- # cannot be added back to the index.
- end
-end