6 lines
178 B
Ruby
6 lines
178 B
Ruby
# rubocop:disable all
|
|
class AddNoteEventsToServices < ActiveRecord::Migration
|
|
def change
|
|
add_column :services, :note_events, :boolean, default: true, null: false
|
|
end
|
|
end
|