summaryrefslogtreecommitdiff
path: root/db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb
blob: ec163bb843c6d021eb6306a7d4d1e12ade6cd08b (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTagPushHooksToProjectHook < ActiveRecord::Migration
  def change
    add_column :web_hooks, :tag_push_events, :boolean, default: false
  end
end