Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cuatrolabs
/
cuatrolabs-scm-ms
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cuatrolabs-scm-ms
/
app
/
core
/
database.py
MukeshKapoor25
refactor(database): consolidate shared database base and fix foreign key schema references
cd357c6
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
"""
Shared database configuration and base classes.
"""
from
sqlalchemy.orm
import
declarative_base
# Shared Base for all SQLAlchemy models
Base = declarative_base()