add `imported` column to status table to mark posts imported from a json dump

staging
multiple creatures 2019-05-21 01:56:16 -05:00
parent bf33771c80
commit 62d667dbf5
1 changed files with 5 additions and 0 deletions

View File

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