Retrospring/db/migrate/20150422024104_add_reason_t...

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-19 16:37:34 -07:00
# frozen_string_literal: true
class AddReasonToReport < ActiveRecord::Migration[4.2]
2015-04-21 19:59:10 -07:00
def change
add_column :reports, :reason, :string, default: nil
end
end