13 lines
473 B
Python
13 lines
473 B
Python
"""YakPanel - Config model (panel settings)"""
|
|
from sqlalchemy import String, Integer, Text
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
from app.core.database import Base
|
|
|
|
|
|
class Config(Base):
|
|
__tablename__ = "config"
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
key: Mapped[str] = mapped_column(String(64), unique=True, nullable=False, index=True)
|
|
value: Mapped[str] = mapped_column(Text, nullable=True, default="")
|