add created_by column to actions table (#3273)

This commit is contained in:
Jonathan Dobson
2025-08-22 09:47:17 -04:00
committed by GitHub
parent b179ff684a
commit f57d17f11e
3 changed files with 33 additions and 0 deletions

View File

@@ -583,6 +583,7 @@ class ActionModel(Base):
created_at = Column(DateTime, default=datetime.datetime.utcnow, nullable=False)
modified_at = Column(DateTime, default=datetime.datetime.utcnow, onupdate=datetime.datetime.utcnow, nullable=False)
created_by = Column(String, nullable=True)
class WorkflowRunBlockModel(Base):