mirror of
https://github.com/TronoSfera/Law.git
synced 2026-05-18 18:13:46 +03:00
18 lines
824 B
Python
18 lines
824 B
Python
import uuid
|
|
|
|
from sqlalchemy import Boolean, Integer, String
|
|
from sqlalchemy.dialects.postgresql import UUID
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.db.session import Base
|
|
from app.models.common import TimestampMixin, UUIDMixin
|
|
|
|
|
|
class LandingFeaturedStaff(Base, UUIDMixin, TimestampMixin):
|
|
__tablename__ = "landing_featured_staff"
|
|
|
|
admin_user_id: Mapped[uuid.UUID] = mapped_column(UUID(as_uuid=True), nullable=False, unique=True, index=True)
|
|
caption: Mapped[str | None] = mapped_column(String(300), nullable=True)
|
|
sort_order: Mapped[int] = mapped_column(Integer, nullable=False, default=0, index=True)
|
|
pinned: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False, index=True)
|
|
enabled: Mapped[bool] = mapped_column(Boolean, nullable=False, default=True, index=True)
|