26 lines
755 B
Ruby
26 lines
755 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class InsertProjectHooksPlanLimits < ActiveRecord::Migration[5.2]
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def up
|
||
|
return unless Gitlab.com?
|
||
|
|
||
|
create_or_update_plan_limit('project_hooks', 'free', 10)
|
||
|
create_or_update_plan_limit('project_hooks', 'bronze', 20)
|
||
|
create_or_update_plan_limit('project_hooks', 'silver', 30)
|
||
|
create_or_update_plan_limit('project_hooks', 'gold', 100)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
return unless Gitlab.com?
|
||
|
|
||
|
create_or_update_plan_limit('project_hooks', 'free', 0)
|
||
|
create_or_update_plan_limit('project_hooks', 'bronze', 0)
|
||
|
create_or_update_plan_limit('project_hooks', 'silver', 0)
|
||
|
create_or_update_plan_limit('project_hooks', 'gold', 0)
|
||
|
end
|
||
|
end
|