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

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

10 lines
239 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class DropInt4ColumnForCiSourcesPipelines < Gitlab::Database::Migration[1.0]
enable_lock_retries!
def change
remove_column :ci_sources_pipelines, :source_job_id_convert_to_bigint, :integer
end
end