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

20191216183531_add_project_hooks_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: 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