feat(shop): add dynamic linked fees to modules

This commit is contained in:
DanielS
2026-07-22 15:09:05 +02:00
parent acd8d6575c
commit 1c31918768
8 changed files with 208 additions and 21 deletions

View File

@@ -0,0 +1,3 @@
-- Add linked_fee_product_id to product_modules table
ALTER TABLE public.product_modules
ADD COLUMN IF NOT EXISTS linked_fee_product_id UUID REFERENCES public.products(id) ON DELETE SET NULL;