debian-mirror-gitlab/db/migrate/20200831204646_add_project_feature_flags_to_plan_limits.rb

10 lines
236 B
Ruby
Raw Normal View History

2020-10-04 03:57:07 +05:30
# 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