debian-mirror-gitlab/db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb
2016-06-16 23:09:34 +05:30

7 lines
176 B
Ruby

# rubocop:disable all
class AddTagPushHooksToProjectHook < ActiveRecord::Migration
def change
add_column :web_hooks, :tag_push_events, :boolean, default: false
end
end