- Implemented SvelteKit frontend with authentication callback handling. - Created demo routes and paraglide localization functionality. - Added health check and entrypoint scripts for backend services. - Established PostgreSQL and Keycloak initialization scripts with health checks. - Introduced models for database schema using SQLAlchemy. - Configured Vite and SvelteKit for development and testing environments. - Added health check script to verify service statuses and resource usage. - Created Docker entrypoint scripts for seamless service startup.
17 lines
589 B
Python
17 lines
589 B
Python
from sqlalchemy import String, PrimaryKeyConstraint
|
|
from sqlalchemy.orm import mapped_column, Mapped
|
|
from core.database import Base
|
|
|
|
class ValuationMethod(Base):
|
|
__tablename__ = "valuation_methods" #GMetValor
|
|
__table_args__ = (
|
|
PrimaryKeyConstraint("key", name="valuation_methods_pkey"),
|
|
{"schema": "public"}
|
|
)
|
|
|
|
key: Mapped[str] = mapped_column(String(2), nullable=False)
|
|
description: Mapped[str] = mapped_column(String(200), nullable=False)
|
|
|
|
def __repr__(self):
|
|
return f"<ValuationMethod(key={self.key}, description={self.description})>"
|