summaryrefslogtreecommitdiff
path: root/db/migrate/20221228083452_remove_check_constraint_on_chat_names_on_integration.rb
blob: 6a75bd1badd9fb4ba98028c03983a8d3e677f5a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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