add eventgroup->event

This commit is contained in:
2024-02-28 18:32:57 +09:00
parent 72608a8ffd
commit 26761f6d39
2 changed files with 2 additions and 0 deletions

View File

@@ -85,6 +85,7 @@ class Event(Base):
eventid= Column(String(100), nullable=False)
function = Column(String(500), nullable=False)
mobile = Column(Boolean, default=False)
eventgroup = Column(Boolean, default=False)
class EventAction(Base):
__tablename__ = "eventaction"