add eventgroup->event
This commit is contained in:
@@ -85,6 +85,7 @@ class Event(Base):
|
|||||||
eventid= Column(String(100), nullable=False)
|
eventid= Column(String(100), nullable=False)
|
||||||
function = Column(String(500), nullable=False)
|
function = Column(String(500), nullable=False)
|
||||||
mobile = Column(Boolean, default=False)
|
mobile = Column(Boolean, default=False)
|
||||||
|
eventgroup = Column(Boolean, default=False)
|
||||||
|
|
||||||
class EventAction(Base):
|
class EventAction(Base):
|
||||||
__tablename__ = "eventaction"
|
__tablename__ = "eventaction"
|
||||||
|
|||||||
@@ -137,6 +137,7 @@ class Event(Base):
|
|||||||
eventid: str
|
eventid: str
|
||||||
function: str
|
function: str
|
||||||
mobile: bool
|
mobile: bool
|
||||||
|
eventgroup: bool
|
||||||
|
|
||||||
class Config:
|
class Config:
|
||||||
orm_mode = True
|
orm_mode = True
|
||||||
|
|||||||
Reference in New Issue
Block a user