mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-15 21:39:00 +00:00
15 lines
437 B
Ruby
15 lines
437 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InsertOpensourcePagesDeploymentsLimit < Gitlab::Database::Migration[2.2]
|
|
restrict_gitlab_migration gitlab_schema: :gitlab_main
|
|
milestone '17.6'
|
|
|
|
def up
|
|
create_or_update_plan_limit('active_versioned_pages_deployments_limit_by_namespace', 'opensource', 500)
|
|
end
|
|
|
|
def down
|
|
create_or_update_plan_limit('active_versioned_pages_deployments_limit_by_namespace', 'opensource', 0)
|
|
end
|
|
end
|