add a local_only column to the statuses table

This commit is contained in:
Erin
2017-12-10 16:41:25 -06:00
parent 282f48ddd1
commit 434c70fd98
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddLocalOnlyFlagToStatuses < ActiveRecord::Migration[5.1]
def change
add_column :statuses, :local_only, :boolean
end
end