Files
gitlab-foss/db/migrate/20241021105736_insert_opensource_pages_deployments_limit.rb
2024-10-23 12:28:11 +00:00

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