gitlab-org--gitlab-foss/db/post_migrate/20210922091402_drop_int4_co...

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

10 lines
257 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class DropInt4ColumnForPushEventPayloads < Gitlab::Database::Migration[1.0]
enable_lock_retries!
def change
remove_column :push_event_payloads, :event_id_convert_to_bigint, :integer, null: false, default: 0
end
end