8da1903168
Rename owner_id to user_id across all persistence models, repositories, stores, routers, and tests for clearer semantics. Rename thread_meta_repo to thread_store for consistency with run_store/run_event_store naming. Add ThreadMetaStore return type annotation to get_thread_store(). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
993 B
Python
24 lines
993 B
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)
|
|
assistant_id: Mapped[str | None] = mapped_column(String(128), index=True)
|
|
user_id: Mapped[str | None] = mapped_column(String(64), index=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))
|