sqlExport: Add limited operations fields to Member

This commit is contained in:
Adam Goldsmith 2020-05-18 20:24:17 -04:00
parent 2eacb46353
commit 7ca2b30d4a

View File

@ -107,6 +107,12 @@ class Member(BaseModel):
access_permitted_shops_during_extended_hours = BooleanField(
column_name="Access Permitted Shops During Extended Hours?", null=True
)
access_permitted_during_limited_operations = BooleanField(
column_name="Access Permitted During Limited Operations", null=True
)
access_permitted_during_covid19_staffed_period_only = BooleanField(
column_name="Access Permitted During COVID-19 Staffed Period Only", null=True
)
access_front_door_and_studio_space_during_extended_hours = BooleanField(
column_name="Access Front Door and Studio Space During Extended Hours?",
null=True,