debian-mirror-gitlab/db/migrate/20200831204646_add_project_feature_flags_to_plan_limits.rb
2020-10-03 22:27:07 +00:00

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