Files
app-service/backend/app/db/base.py
2025-12-05 09:53:16 +01:00

9 lines
254 B
Python

"""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