Initial commit
This commit is contained in:
8
backend/app/db/base.py
Normal file
8
backend/app/db/base.py
Normal 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
|
||||
Reference in New Issue
Block a user