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,8 @@
class CreateMultiGroupOrders < ActiveRecord::Migration[7.0]
def change
create_table :multi_group_orders, id: :integer do |t|
t.references :multi_order, null: false, foreign_key: true, type: :integer
t.timestamps
end
end
end