summaryrefslogtreecommitdiff
path: root/db/migrate/20160227120001_add_event_field_for_web_hook.rb
blob: 89910893ee1b10e82acdea4f5613de58967ddabb (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddEventFieldForWebHook < ActiveRecord::Migration
  def change
    add_column :web_hooks, :wiki_page_events, :boolean, default: false, null: false
  end
end