Fundamental_Analysis/backend/app/models/system_config.py
2025-10-28 23:31:28 +08:00

14 lines
324 B
Python

"""
System Configuration Model
"""
from sqlalchemy import Column, String, JSON
from sqlalchemy.orm import declarative_base
Base = declarative_base()
class SystemConfig(Base):
__tablename__ = 'system_config'
config_key = Column(String, primary_key=True, index=True)
config_value = Column(JSON, nullable=False)