debian-mirror-gitlab/db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb
2023-03-17 16:20:25 +05:30

16 lines
371 B
Ruby

# 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