gitlab-org--gitlab-foss/db/post_migrate/20220707105529_cleanup_chat...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
325 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CleanupChatNameServiceId < Gitlab::Database::Migration[2.0]
disable_ddl_transaction!
def up
cleanup_concurrent_column_rename :chat_names, :service_id, :integration_id
end
def down
undo_cleanup_concurrent_column_rename :chat_names, :service_id, :integration_id
end
end