16 lines
558 B
Python
16 lines
558 B
Python
from datetime import datetime
|
|
|
|
from sqlalchemy import DateTime, Integer, String
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.auth_db import AuthBase
|
|
|
|
|
|
class AppConfigEntry(AuthBase):
|
|
__tablename__ = "app_config"
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
key: Mapped[str] = mapped_column(String(255), unique=True, nullable=False, index=True)
|
|
value: Mapped[str] = mapped_column(String, nullable=False)
|
|
updated_at: Mapped[datetime] = mapped_column(DateTime(timezone=True), nullable=False)
|