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:
authorJeroen van Baarsen <jeroenvanbaarsen@gmail.com>2014-03-05 23:44:01 +0400
committerJeroen van Baarsen <jeroenvanbaarsen@gmail.com>2014-03-05 23:44:01 +0400
commit9a676ccc0a8dd26eb1ebd5042acbf31cfb906f91 (patch)
treeb0679ea1f2a11f608c33a72a4b983bfa1447f424 /db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb
parentd02e129a549190c3bd26ed32eac13dfa62f2844d (diff)
Added tag_push_events to the web_hooks
* Added a scope to the web_hooks model * Added extra checkbooks in de hooks overview window
Diffstat (limited to 'db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb')
-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