mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 16:03:37 +01:00
5 lines
129 B
Ruby
5 lines
129 B
Ruby
class AddReasonToReport < ActiveRecord::Migration
|
|
def change
|
|
add_column :reports, :reason, :string, default: nil
|
|
end
|
|
end
|