summaryrefslogtreecommitdiff
path: root/db/migrate/20220314194149_add_project_ci_secure_files_to_plan_limits.rb
blob: fcb7d322ce8c22ad4297dedfd65823fe48f3f252 (plain)
1
2
3
4
5
6
7
# 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