File tree 2 files changed +5
-0
lines changed
Filter options
2 files changed +5
-0
lines changed
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ class User(Base):
13
13
password = Column (String , nullable = False )
14
14
photo = Column (String , nullable = True )
15
15
verified = Column (Boolean , nullable = False , server_default = 'False' )
16
+ verification_code = Column (String , nullable = True , unique = True )
16
17
role = Column (String , server_default = 'user' , nullable = False )
17
18
created_at = Column (TIMESTAMP (timezone = True ),
18
19
nullable = False , server_default = text ("now()" ))
Original file line number Diff line number Diff line change 3
3
### 1. RESTful API with Python & FastAPI: Access and Refresh Tokens
4
4
5
5
[ RESTful API with Python & FastAPI: Access and Refresh Tokens] ( https://codevoweb.com/restful-api-with-python-fastapi-access-and-refresh-tokens )
6
+
7
+ ### 2. RESTful API with Python & FastAPI: Send HTML Emails
8
+
9
+ [ RESTful API with Python & FastAPI: Send HTML Emails] ( https://codevoweb.com/restful-api-with-python-fastapi-send-html-emails )
You can’t perform that action at this time.
0 commit comments