add `edited` column to status table to mark if a mod/admin changed something

staging
multiple creatures 2019-05-21 01:56:07 -05:00
parent 83c2c466fb
commit bf33771c80
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddEditedToStatuses < ActiveRecord::Migration[5.2]
def change
add_column :statuses, :edited, :boolean
end
end