mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:29:53 +01:00
7 lines
171 B
Ruby
7 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDeletedToReports < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :reports, :deleted, :boolean, default: false
|
|
end
|
|
end
|