mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 18:13:36 +01:00
6 lines
135 B
Ruby
6 lines
135 B
Ruby
|
class AddDeletedToReports < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :reports, :deleted, :boolean, default: false
|
||
|
end
|
||
|
end
|