mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-16 17:46:20 +00:00
* feat(persistence): expand thread incarnation storage Add nullable thread and MCP task incarnation columns while preserving mixed-version writes. New thread records receive stable incarnation IDs, and new task rows copy the matching owned or shared thread incarnation without changing any read, claim, session, or deletion behavior. * test(persistence): pin incarnation rollback compatibility * test(api): pin internal thread response boundary * fix(persistence): rebase incarnation rollout after projects --------- Co-authored-by: CorgiBoyG <CorgiBoyG@users.noreply.github.com>
26 lines
1.1 KiB
Python
26 lines
1.1 KiB
Python
"""ORM model for thread metadata."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import UTC, datetime
|
|
|
|
from sqlalchemy import JSON, DateTime, String
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from deerflow.persistence.base import Base
|
|
|
|
|
|
class ThreadMetaRow(Base):
|
|
__tablename__ = "threads_meta"
|
|
|
|
thread_id: Mapped[str] = mapped_column(String(64), primary_key=True)
|
|
incarnation: Mapped[str | None] = mapped_column(String(32), nullable=True)
|
|
assistant_id: Mapped[str | None] = mapped_column(String(128), index=True)
|
|
user_id: Mapped[str | None] = mapped_column(String(64), index=True)
|
|
project_id: Mapped[str | None] = mapped_column(String(64), index=True, nullable=True)
|
|
display_name: Mapped[str | None] = mapped_column(String(256))
|
|
status: Mapped[str] = mapped_column(String(20), default="idle")
|
|
metadata_json: Mapped[dict] = mapped_column(JSON, default=dict)
|
|
created_at: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=lambda: datetime.now(UTC))
|
|
updated_at: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=lambda: datetime.now(UTC), onupdate=lambda: datetime.now(UTC))
|