retrospring/db/migrate/20150422024104_add_reason_to_report.rb

6 lines
134 B
Ruby
Raw Normal View History

class AddReasonToReport < ActiveRecord::Migration[4.2]
2015-04-22 04:59:10 +02:00
def change
add_column :reports, :reason, :string, default: nil
end
end