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,7 @@
class CreateMultiOrders < ActiveRecord::Migration[7.0]
def change
create_table :multi_orders, id: :integer do |t|
t.timestamps
end
end
end