summaryrefslogtreecommitdiff
path: root/db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb
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, 15 insertions, 0 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
new file mode 100644
index 00000000000..6a75bd1badd
--- /dev/null
+++ b/db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb
@@ -0,0 +1,15 @@
+# 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