File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ class User(Base):
1313 password = Column (String , nullable = False )
1414 photo = Column (String , nullable = True )
1515 verified = Column (Boolean , nullable = False , server_default = 'False' )
16+ verification_code = Column (String , nullable = True , unique = True )
1617 role = Column (String , server_default = 'user' , nullable = False )
1718 created_at = Column (TIMESTAMP (timezone = True ),
1819 nullable = False , server_default = text ("now()" ))
Original file line number Diff line number Diff line change 33### 1. RESTful API with Python & FastAPI: Access and Refresh Tokens
44
55[ 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