fix: rename remaining metadata fields to meta in models.py
- Fix DialogSummary.metadata -> DialogSummary.meta - Fix AgentMemoryFactsVector.metadata -> AgentMemoryFactsVector.meta - All metadata fields now renamed to meta
This commit is contained in:
@@ -83,7 +83,7 @@ class DialogSummary(Base):
|
|||||||
topics = Column(JSONB, nullable=True) # ["project-planning", "bug-fix", ...]
|
topics = Column(JSONB, nullable=True) # ["project-planning", "bug-fix", ...]
|
||||||
|
|
||||||
# Метадані
|
# Метадані
|
||||||
metadata = Column(JSONB, nullable=False, server_default="{}")
|
meta = Column(JSONB, nullable=False, server_default="{}")
|
||||||
|
|
||||||
created_at = Column(TIMESTAMP(timezone=True), nullable=False, server_default=func.now())
|
created_at = Column(TIMESTAMP(timezone=True), nullable=False, server_default=func.now())
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user