gitlab-org--gitlab-foss/db/migrate/20200831204646_add_project_...

10 lines
236 B
Ruby

# 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