summaryrefslogtreecommitdiff
path: root/db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
blob: 4d6a61bd6142404ae8912a20aabaa02327c94160 (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable Migration/UpdateColumnInBatches
class SetMissingStageOnCiBuilds < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  def up
    update_column_in_batches(:ci_builds, :stage, :test) do |table, query|
      query.where(table[:stage].eq(nil))
    end
  end
end