wip multi orders
This commit is contained in:
parent
fd769509af
commit
f676497e43
29 changed files with 939 additions and 107 deletions
13
db/migrate/20250403102400_create_ordergroup_invoices.rb
Normal file
13
db/migrate/20250403102400_create_ordergroup_invoices.rb
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
class CreateOrdergroupInvoices < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
create_table :ordergroup_invoices do |t|
|
||||
t.date :invoice_date
|
||||
t.string :invoice_number
|
||||
t.string :payment_method
|
||||
t.boolean :paid, default: false
|
||||
t.boolean :sepa_downloaded, default: false
|
||||
t.string :sepa_sequence_type, default: "RCUR"
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue