summaryrefslogtreecommitdiff
path: root/db/migrate/20150225065047_add_note_events_to_services.rb
blob: 32c538e8681d0a4b8db1711e07fc859890e4c924 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddNoteEventsToServices < ActiveRecord::Migration[4.2]
  def change
    add_column :services, :note_events, :boolean, default: true, null: false
  end
end