From 98139e2162a0504139ea63686f513f11865faf2e Mon Sep 17 00:00:00 2001 From: DmitryGantimurov Date: Wed, 19 Jul 2023 00:05:42 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9A=20=D1=81=D1=85=D0=B5=D0=BC=D0=B0=D0=BC?= =?UTF-8?q?=20=D0=B8=D0=B7=20schema.py=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=B4=D0=BE=D0=BF.=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BB=D1=8F=20(=D1=81=D0=BE=D0=BE=D1=82=D0=B2.=20models)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/schema.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/back/schema.py b/back/schema.py index 424983d..2d63adc 100644 --- a/back/schema.py +++ b/back/schema.py @@ -15,10 +15,13 @@ class TokenData(BaseModel): class User(BaseModel): - email: Union[str, None] = None - full_name: Union[str, None] = None - disabled: Union[bool, None] = None + id: int + phone: Union[int, None] = None + email: str + name: Union[str, None] = None + surname: Union[str, None] = None class UserInDB(User): + password: str hashed_password: str \ No newline at end of file