mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 00:56:05 +01:00
7 lines
165 B
Ruby
7 lines
165 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddReasonToReport < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :reports, :reason, :string, default: nil
|
|
end
|
|
end
|