summaryrefslogtreecommitdiff
path: root/db/migrate/20200224185814_add_project_subscriptions_to_plan_limits.rb
blob: 789f23501fbc4cea4351443a3415692eed7cc1c1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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