"""Feedback model for VoIdea.""" from typing import Optional from sqlalchemy import ForeignKey, String, Text from sqlalchemy.dialects.postgresql import UUID from sqlalchemy.orm import Mapped, mapped_column from app.core.base import SQLBase, TimestampMixin, UUIDMixin class Feedback(SQLBase, UUIDMixin, TimestampMixin): __tablename__ = "feedback" user_id: Mapped[UUID] = mapped_column( UUID(as_uuid=True), ForeignKey("users.id", ondelete="SET NULL"), nullable=True, index=True, ) text: Mapped[str] = mapped_column( Text, nullable=False ) page_url: Mapped[Optional[str]] = mapped_column( String(512), nullable=True ) status: Mapped[str] = mapped_column( String(20), default="new", nullable=False, index=True )