mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-12 22:43:38 +01:00
6 lines
129 B
Ruby
6 lines
129 B
Ruby
|
class AddReasonToReport < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :reports, :reason, :string, default: nil
|
||
|
end
|
||
|
end
|