gitlab-org--gitlab-foss/db/migrate/20220511191503_add_pipeline...

8 lines
266 B
Ruby

# frozen_string_literal: true
class AddPipelineCreateLimitPerProjectUserShaToApplicationSettings < Gitlab::Database::Migration[2.0]
def change
add_column :application_settings, :pipeline_limit_per_project_user_sha, :integer, default: 0, null: false
end
end