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