changed request, add new column to invoce

This commit is contained in:
olegphenomenon 2022-01-24 12:58:03 +02:00
parent 29301a94c1
commit d1e64577b4
4 changed files with 40 additions and 22 deletions

View file

@ -0,0 +1,5 @@
class AddPaymentLinkToInvoice < ActiveRecord::Migration[6.1]
def change
add_column :invoices, :payment_link, :string
end
end