26 lines
846 B
Ruby
26 lines
846 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class InsertProjectSubscriptionsPlanLimits < ActiveRecord::Migration[6.0]
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def up
|
||
|
return unless Gitlab.com?
|
||
|
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'free', 2)
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'bronze', 2)
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'silver', 2)
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'gold', 2)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
return unless Gitlab.com?
|
||
|
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'free', 0)
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'bronze', 0)
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'silver', 0)
|
||
|
create_or_update_plan_limit('ci_project_subscriptions', 'gold', 0)
|
||
|
end
|
||
|
end
|