From 3d48220b8fc4bbd634168dd47ad616e771782ecb Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Fri, 9 Aug 2024 17:49:11 -0400 Subject: [PATCH] Updated the event model. Now time to deal with the views... --- app/models/event_models.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/models/event_models.py b/app/models/event_models.py index 576a86d..9c2fb6e 100644 --- a/app/models/event_models.py +++ b/app/models/event_models.py @@ -122,6 +122,9 @@ class Event_Base(BaseModel): passcode: Optional[str] file_count: Optional[int] + internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"??? + event_file_id_li_json: Optional[Union[Json, None]] # List of file IDs (actually id_random) + file_count_all: Optional[int] # Of all files under a session enable: Optional[bool] # Also in Event_Cfg_Base model enable_from: Optional[datetime.datetime] = None @@ -385,6 +388,9 @@ class Event_Meeting_Flat_Base(BaseModel): passcode: Optional[str] file_count: Optional[int] + internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"??? + event_file_id_li_json: Optional[Union[Json, None]] # List of file IDs (actually id_random) + file_count_all: Optional[int] # Of all files under a session enable: Optional[bool] # Also in Event_Cfg_Base model enable_from: Optional[datetime.datetime] = None