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

20210526190259_add_ci_daily_pipeline_schedule_triggers_to_plan_limits.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 074bec3116099f981a540dd7e8941b256c619ab2 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddCiDailyPipelineScheduleTriggersToPlanLimits < ActiveRecord::Migration[6.0]
  def change
    add_column(:plan_limits, :ci_daily_pipeline_schedule_triggers, :integer, default: 0, null: false)
  end
end