wip multi orders

This commit is contained in:
viehlieb 2025-05-08 11:59:35 +02:00
parent fd769509af
commit f676497e43
29 changed files with 939 additions and 107 deletions

View 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