summaryrefslogtreecommitdiff
path: root/db/migrate/20160227120047_add_event_to_services.rb
blob: a3b94734ec2f3ea2b4d145fdf65b35b39a4afe58 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddEventToServices < ActiveRecord::Migration[4.2]
  def change
    add_column :services, :wiki_page_events, :boolean, default: true
  end
end