diff --git a/fastapi_users/models.py b/fastapi_users/models.py index 2e509117..193b95c0 100644 --- a/fastapi_users/models.py +++ b/fastapi_users/models.py @@ -49,6 +49,10 @@ class BaseUserUpdate(BaseUser): class BaseUserDB(BaseUser): id: UUID4 + email: EmailStr + is_active: bool + is_superuser: bool + is_verified: bool hashed_password: str class Config: