summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210922025631_drop_int4_column_for_ci_sources_pipelines.rb
blob: b25f1d88736c2538531031ddd952e4335e9a20ab (plain)
1
2
3
4
5
6
7
8
9
# 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