Remove unique, unsued migration validation
This commit is contained in:
parent
85ba111260
commit
a788cbedbb
4 changed files with 116 additions and 86 deletions
|
|
@ -43,7 +43,7 @@ class Order(BaseJsonModel):
|
|||
class Member(BaseJsonModel):
|
||||
first_name: str
|
||||
last_name: str
|
||||
email: str = Field(unique=True, index=True)
|
||||
email: str = Field(index=True)
|
||||
join_date: datetime.date
|
||||
|
||||
# Creates an embedded model.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue