Added migration for adding has_quote to statuses

• Added:
- migration for adding has_quote to statuses
This commit is contained in:
mgabdev 2020-08-05 23:15:38 -05:00
parent 926477fe45
commit bc54a281e6

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