add domainid->flow

This commit is contained in:
2023-11-13 18:02:19 +09:00
parent 55181f2c57
commit 5cb9375db3
4 changed files with 12 additions and 5 deletions

View File

@@ -47,6 +47,7 @@ class Flow(Base):
flowid = Column(String(100), index=True, nullable=False)
appid = Column(String(100), index=True, nullable=False)
eventid = Column(String(100), index=True, nullable=False)
domainid = Column(Integer,ForeignKey("domain.id"))
name = Column(String(200))
content = Column(String)