debian-mirror-gitlab/db/migrate/20211108154510_create_pipeline_triggers_application_limits.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
224 B
Ruby
Raw Normal View History

2021-12-11 22:18:48 +05:30
# frozen_string_literal: true
class CreatePipelineTriggersApplicationLimits < Gitlab::Database::Migration[1.0]
def change
add_column(:plan_limits, :pipeline_triggers, :integer, default: 25_000, null: false)
end
end