feat: add deposit and weekend km allowance to vehicles, update migrations and booking flow

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
LagoESP
2026-04-29 16:00:06 +02:00
parent d960e37aa8
commit e85b319c93
10 changed files with 83 additions and 39 deletions
+6
View File
@@ -16,6 +16,12 @@ update public.vehicles
max_daily_km = 150
where weekend_price_eur = 0;
-- Ferrari gets specific pricing
update public.vehicles
set weekend_price_eur = 1100,
max_daily_km = 200
where brand = 'Ferrari' and model = '296 GTB';
-- -----------------------------------------------------------------------------
-- 2. Lead attachments: documents uploaded during booking flow
-- -----------------------------------------------------------------------------