db: add quote_id migration

pull/36/head
Ariadne Conill 2022-12-25 02:50:28 +00:00
parent 0b48ae2c3c
commit a697e1da13
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddQuoteIdToStatuses < ActiveRecord::Migration[6.1]
def change
add_column :statuses, :quote_id, :bigint, null: true, default: nil
end
end