MukeshKapoor25's picture
refactor(database): consolidate shared database base and fix foreign key schema references
cd357c6
raw
history blame contribute delete
166 Bytes
"""
Shared database configuration and base classes.
"""
from sqlalchemy.orm import declarative_base
# Shared Base for all SQLAlchemy models
Base = declarative_base()