"""study_question_images ORM (PR-8) — 문제별 첨부 이미지. 저장: NAS /documents/study_question_images/{topic_id}/{qid}/{img_id}.{ext} 표시: GET /api/study-questions/{qid}/images/{img_id}/raw (인증 필요) """ from datetime import datetime from sqlalchemy import BigInteger, DateTime, ForeignKey, Integer, String, Text from sqlalchemy.orm import Mapped, mapped_column from core.database import Base class StudyQuestionImage(Base): __tablename__ = "study_question_images" id: Mapped[int] = mapped_column(BigInteger, primary_key=True) user_id: Mapped[int] = mapped_column( BigInteger, ForeignKey("users.id", ondelete="CASCADE"), nullable=False ) study_question_id: Mapped[int] = mapped_column( BigInteger, ForeignKey("study_questions.id", ondelete="CASCADE"), nullable=False ) file_path: Mapped[str] = mapped_column(Text, nullable=False) file_size: Mapped[int] = mapped_column(BigInteger, nullable=False) mime_type: Mapped[str] = mapped_column(String(80), nullable=False) sort_order: Mapped[int] = mapped_column(Integer, default=0, nullable=False) created_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), default=datetime.now, nullable=False )