Merge branch 'main' into claude/master-orchestration-prompt-01LDBhHG69usnt61gpq5wAfA

This commit is contained in:
Alexa Amundson
2025-11-19 16:21:55 -06:00
committed by GitHub
34 changed files with 3517 additions and 15 deletions

View File

@@ -67,8 +67,8 @@ class AnchorEvent(Base):
status = Column(String(20), nullable=False) # pending, confirmed, failed
error_message = Column(Text, nullable=True)
# Metadata
metadata = Column(Text, nullable=True) # JSON serialized
# Metadata (attribute renamed from 'metadata' to avoid SQLAlchemy reserved attribute)
event_metadata = Column("metadata", Text, nullable=True) # JSON serialized
# Timestamps
created_at = Column(DateTime(timezone=True), server_default=func.now(), nullable=False)