diff --git a/app/models/event_location_models.py b/app/models/event_location_models.py index aa81e08..c37fbb6 100644 --- a/app/models/event_location_models.py +++ b/app/models/event_location_models.py @@ -7,6 +7,7 @@ from app.db_sql import redis_lookup_id_random from app.lib_general import log, logging from .common_field_schema import base_fields, default_num_bytes +# from app.models.event_session_models import Event_Session_Base # ### BEGIN ### API Event Location Models ### Event_Location_Base() ### @@ -38,6 +39,15 @@ class Event_Location_Base(BaseModel): name: Optional[str] description: Optional[str] + # New internal use fields to help with logistics and planning 2022-09-15 + internal_use: Optional[bool] # Will hide from moderators, presenters, non support people, etc + internal_notes: Optional[str] # general notes + internal_notes_access: Optional[str] # accessibility + internal_notes_av: Optional[str] # audio video + internal_notes_fb: Optional[str] # food and beverage + internal_notes_it: Optional[str] # IT and networking + internal_notes_staff: Optional[str] # staffing and labor + file_count: Optional[int] alert: Optional[bool]