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

20201007033527_add_daily_invites_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: 8f0079cd639e0f932dc6eb45b9ab86cb53ec0624 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column(:plan_limits, :daily_invites, :integer, default: 0, null: false)
  end
end