Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200831222347_insert_project_feature_flags_plan_limits.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c91016d9dd83b3d525232dae432fad39300f453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

class InsertProjectFeatureFlagsPlanLimits < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    return unless Gitlab.com?

    create_or_update_plan_limit('project_feature_flags', 'free', 50)
    create_or_update_plan_limit('project_feature_flags', 'bronze', 100)
    create_or_update_plan_limit('project_feature_flags', 'silver', 150)
    create_or_update_plan_limit('project_feature_flags', 'gold', 200)
  end

  def down
    return unless Gitlab.com?

    create_or_update_plan_limit('project_feature_flags', 'free', 0)
    create_or_update_plan_limit('project_feature_flags', 'bronze', 0)
    create_or_update_plan_limit('project_feature_flags', 'silver', 0)
    create_or_update_plan_limit('project_feature_flags', 'gold', 0)
  end
end