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/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb')
-rw-r--r--db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb b/db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb
deleted file mode 100644
index 6a75bd1badd..00000000000
--- a/db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveCheckConstraintOnChatNamesOnIntegration < Gitlab::Database::Migration[2.1]
- CONSTRAINT_NAME = 'check_2b0a0d0f0f'
-
- disable_ddl_transaction!
-
- def up
- remove_check_constraint(:chat_names, CONSTRAINT_NAME)
- end
-
- def down
- # noop: rollback would not work as we can have records where `integration_id` IS NULL
- end
-end