th: db: add quote_id migration

lolsob-rspec
Ariadne Conill 2022-12-25 02:50:28 +00:00
parent 9c60149f15
commit 4681e0c00e
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