9 lines
254 B
Python
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
|