debian-mirror-gitlab/db/migrate/20211008182954_add_shared_runners_duration_to_ci_project_monthly_usages.rb
2021-11-18 22:05:49 +05:30

9 lines
271 B
Ruby

# 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