summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221011062254_sync_new_amount_used_for_ci_project_monthly_usages.rb
blob: 32943f10fcf72d219309cd5f582a528eb03a1e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class SyncNewAmountUsedForCiProjectMonthlyUsages < Gitlab::Database::Migration[2.0]
  restrict_gitlab_migration gitlab_schema: :gitlab_ci

  def up
    project_usages = define_batchable_model('ci_project_monthly_usages')

    project_usages.each_batch(of: 500) do |batch|
      batch.where('amount_used > 0').update_all('new_amount_used = amount_used')
    end
  end

  def down
    # Non reversible migration.
    # This data migration keeps `new_amount_used` in sync with the old `amount_used`.
    # In case of failure or interruption the migration can be retried.
  end
end