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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-12 11:52:34 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-12 11:52:34 +0400
commit56318a24b1f7c07f7fe5d3fd23bf7d26c0240a87 (patch)
tree64efa32672bfc9261c1c277ecc694a32ef92436d /db/migrate
parentcc57a25c39855933435e0ff9bf462474e1224109 (diff)
parente6ceec9d60b9fe5eaec8faf777307f39bd4b1fa3 (diff)
Merge pull request #6474 from jvanbaarsen/post-tag-hook
Add web hooks on tag
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb b/db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb
new file mode 100644
index 00000000000..7017148702a
--- /dev/null
+++ b/db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb
@@ -0,0 +1,5 @@
+class AddTagPushHooksToProjectHook < ActiveRecord::Migration
+ def change
+ add_column :web_hooks, :tag_push_events, :boolean, default: false
+ end
+end