debian-mirror-gitlab/db/migrate/20220314194149_add_project_ci_secure_files_to_plan_limits.rb
2022-05-07 20:08:51 +05:30

8 lines
223 B
Ruby

# frozen_string_literal: true
class AddProjectCiSecureFilesToPlanLimits < Gitlab::Database::Migration[1.0]
def change
add_column(:plan_limits, :project_ci_secure_files, :integer, default: 100, null: false)
end
end