parsley/db/migrate/20160812205919_add_notes_to_logs.rb
2016-08-12 16:05:24 -05:00

6 lines
111 B
Ruby

class AddNotesToLogs < ActiveRecord::Migration[5.0]
def change
add_column :logs, :notes, :text
end
end