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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-26 09:09:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-26 09:09:00 +0300
commita496f41f60e12a0a5c31482b7594ad547e0ade42 (patch)
tree2248f3ec4451bca9e5fca08c7761c846c5285b7f /db/migrate/20200212133945_add_group_hooks_to_plan_limits.rb
parentd393deba773bb1fab09273850fe5d5986066d76d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate/20200212133945_add_group_hooks_to_plan_limits.rb')
-rw-r--r--db/migrate/20200212133945_add_group_hooks_to_plan_limits.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20200212133945_add_group_hooks_to_plan_limits.rb b/db/migrate/20200212133945_add_group_hooks_to_plan_limits.rb
new file mode 100644
index 00000000000..4e279ff903d
--- /dev/null
+++ b/db/migrate/20200212133945_add_group_hooks_to_plan_limits.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class AddGroupHooksToPlanLimits < ActiveRecord::Migration[6.0]
+ DOWNTIME = false
+
+ def change
+ add_column(:plan_limits, :group_hooks, :integer, default: 0, null: false)
+ end
+end