refactor: delete legacy models/database/cart.py

Update import in alembic/env.py to use app.modules.cart.models,
then delete the legacy re-export file.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-29 23:18:45 +01:00
parent e8af9d5e9f
commit 7437c70249
2 changed files with 1 additions and 14 deletions

View File

@@ -157,7 +157,7 @@ except ImportError as e:
# CART MODELS
# ----------------------------------------------------------------------------
try:
from models.database.cart import CartItem
from app.modules.cart.models import CartItem
print(" ✓ Cart models imported (1 model)")
print(" - CartItem")