Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20211008182954_add_shared_runners_duration_to_ci_project_monthly_usages.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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