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