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/20221226153240_remove_chat_names_integration_id_foreign_key.rb')
-rw-r--r--db/post_migrate/20221226153240_remove_chat_names_integration_id_foreign_key.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/db/post_migrate/20221226153240_remove_chat_names_integration_id_foreign_key.rb b/db/post_migrate/20221226153240_remove_chat_names_integration_id_foreign_key.rb
deleted file mode 100644
index 51baa9c9f57..00000000000
--- a/db/post_migrate/20221226153240_remove_chat_names_integration_id_foreign_key.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveChatNamesIntegrationIdForeignKey < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- SOURCE_TABLE_NAME = :chat_names
- TARGET_TABLE_NAME = :integrations
- COLUMN = :integration_id
- TARGET_COLUMN = :id
- FK_NAME = :fk_99a1348daf
-
- def up
- with_lock_retries do
- remove_foreign_key_if_exists(SOURCE_TABLE_NAME, name: FK_NAME)
- end
- end
-
- def down
- add_concurrent_foreign_key(
- SOURCE_TABLE_NAME,
- TARGET_TABLE_NAME,
- column: COLUMN,
- name: FK_NAME,
- on_delete: :cascade
- )
- end
-end