WIP on JSON tests

This commit is contained in:
Andrew Brookins 2021-10-04 14:04:40 -07:00
parent 976fdf3ad4
commit b46408ccd2

View file

@ -48,7 +48,7 @@ class Member(BaseJsonModel):
last_name: str
email: str = Field(index=True)
join_date: datetime.date
age: int
age: int = Field(index=True)
# Creates an embedded model.
address: Address