mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
9 lines
297 B
Ruby
9 lines
297 B
Ruby
# 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
|