File tree 2 files changed +9
-3
lines changed
fastapi_users_db_sqlmodel
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
15
15
class SQLModelBaseUserDB (BaseUserDB , SQLModel ):
16
- id : UUID4 = Field (default_factory = uuid .uuid4 , primary_key = True )
17
- email : EmailStr = Field (sa_column_kwargs = {"unique" : True , "index" : True })
16
+ id : UUID4 = Field (default_factory = uuid .uuid4 , primary_key = True , nullable = False )
17
+ email : EmailStr = Field (
18
+ sa_column_kwargs = {"unique" : True , "index" : True }, nullable = False
19
+ )
20
+
21
+ is_active : bool = Field (True , nullable = False )
22
+ is_superuser : bool = Field (False , nullable = False )
23
+ is_verified : bool = Field (False , nullable = False )
18
24
19
25
class Config :
20
26
orm_mode = True
Original file line number Diff line number Diff line change 1
1
aiosqlite >= 0.17.0
2
- fastapi-users >= 8.0.0b3
2
+ fastapi-users >= 8.1.1
3
3
sqlmodel >= 0.0.4 ,< 0.1.0
You can’t perform that action at this time.
0 commit comments