Initial commit

This commit is contained in:
2025-12-04 22:24:47 +01:00
commit 453ce10494
106 changed files with 17145 additions and 0 deletions

8
backend/app/db/base.py Normal file
View File

@@ -0,0 +1,8 @@
"""Base model class for all database models."""
from sqlalchemy.ext.declarative import declarative_base
# Base class for all SQLAlchemy models
Base = declarative_base()
# Note: Model imports have been moved to alembic/env.py to avoid circular imports