summaryrefslogtreecommitdiff
path: root/db/migrate/20191216183531_add_project_hooks_to_plan_limits.rb
blob: c56b6edf0292e469d310959a0d0128171ef5496e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddProjectHooksToPlanLimits < ActiveRecord::Migration[5.2]
  DOWNTIME = false

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