mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 00:57:12 -05:00
Merge branch 'main' into claude/master-orchestration-prompt-01LDBhHG69usnt61gpq5wAfA
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user