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

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

class CreateDotenvApplicationLimits < Gitlab::Database::Migration[1.0]
  def change
    add_column(:plan_limits, :dotenv_variables, :integer, default: 20, null: false)
    add_column(:plan_limits, :dotenv_size, :integer, default: 5.kilobytes, null: false)
  end
end