diff --git a/be/app/schemas/user.py b/be/app/schemas/user.py index 4bf247a..be22574 100644 --- a/be/app/schemas/user.py +++ b/be/app/schemas/user.py @@ -19,7 +19,7 @@ class UserCreate(UserBase): # Properties stored in DB class UserInDBBase(UserBase): id: int - hashed_password: str + password_hash: str created_at: datetime model_config = ConfigDict(from_attributes=True) # Use orm_mode in Pydantic v1