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

20200831204646_add_project_feature_flags_to_plan_limits.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4bd2431d9c94b652718e0677f9f0e3681b999b7 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddProjectFeatureFlagsToPlanLimits < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column(:plan_limits, :project_feature_flags, :integer, default: 200, null: false)
  end
end