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