gitlab-org--gitlab-foss/db/post_migrate/20220831090454_cleanup_web_...

14 lines
323 B
Ruby

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