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