retrospring/db/migrate/20150422024104_add_reason_to_report.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
165 B
Ruby
Raw Normal View History

2023-10-20 01:37:34 +02:00
# frozen_string_literal: true
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