Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cuatrolabs
/
cuatrolabs-pos-ms
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cuatrolabs-pos-ms
/
app
/
core
/
database.py
MukeshKapoor25
feat(database): Add comprehensive PostgreSQL connection management and configuration
b41273c
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()