17211c6e82
Spec: docs/superpowers/specs/2026-05-13-note-version-pinning-design.md - pin_kind: NULL=rolling, 'auto'=stability-scan, 'manual'=user-declared. - pin_label: NULL for rolling; auto-generated for 'auto'; user-supplied string for 'manual' (may be NULL). No backfill — every existing row stays rolling. The daily auto-pin scan will catch up on the first run after deploy.
34 lines
1.3 KiB
Python
34 lines
1.3 KiB
Python
from sqlalchemy import ARRAY, ForeignKey, Integer, Text
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from fabledassistant.models import Base
|
|
from fabledassistant.models.base import CreatedAtMixin
|
|
|
|
|
|
class NoteVersion(Base, CreatedAtMixin):
|
|
__tablename__ = "note_versions"
|
|
|
|
id: Mapped[int] = mapped_column(primary_key=True)
|
|
note_id: Mapped[int] = mapped_column(Integer, ForeignKey("notes.id", ondelete="CASCADE"))
|
|
user_id: Mapped[int] = mapped_column(Integer, ForeignKey("users.id", ondelete="CASCADE"))
|
|
body: Mapped[str] = mapped_column(Text)
|
|
title: Mapped[str] = mapped_column(Text, default="")
|
|
tags: Mapped[list[str]] = mapped_column(ARRAY(Text), default=list)
|
|
pin_kind: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
pin_label: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
|
|
def to_dict(self, include_body: bool = True) -> dict:
|
|
d: dict = {
|
|
"id": self.id,
|
|
"note_id": self.note_id,
|
|
"user_id": self.user_id,
|
|
"title": self.title,
|
|
"tags": self.tags or [],
|
|
"pin_kind": self.pin_kind,
|
|
"pin_label": self.pin_label,
|
|
"created_at": self.created_at.isoformat(),
|
|
}
|
|
if include_body:
|
|
d["body"] = self.body
|
|
return d
|