Bug fix in order cart method and added email to person model.

This commit is contained in:
Scott Idem
2021-08-07 18:33:02 -04:00
parent 106a186ea6
commit 562a3ffa36
2 changed files with 7 additions and 2 deletions

View File

@@ -64,6 +64,11 @@ class Person_Base(BaseModel):
created_on: Optional[datetime.datetime] = None
updated_on: Optional[datetime.datetime] = None
# Convenience Data
# This is only for convenience. Probably going to keep unless it causes a problem.
email: Optional[str]
# Maybe add timezone in the future?
# Including JSON data
other_json: Optional[Json]
meta_json: Optional[Json]