summaryrefslogtreecommitdiff
path: root/db/migrate/20211008182954_add_shared_runners_duration_to_ci_project_monthly_usages.rb
blob: 76bb7356f0f542724aad6aeae6260d887bc9e3e1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddSharedRunnersDurationToCiProjectMonthlyUsages < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :ci_project_monthly_usages, :shared_runners_duration, :integer, default: 0, null: false
  end
end