fix: with app.app_context()

This commit is contained in:
Swapnil 2024-01-24 17:42:45 +05:30
parent a17303347f
commit 6ad03b120c
Signed by: swapnil
GPG Key ID: 58029C48BB100574

View File

@ -17,7 +17,8 @@ class Token(db.Model):
def __repr__(self):
return f'<Token {self.id}>'
# Initialize the database
# Create an application context
with app.app_context():
db.create_all()
# API to create a new token entry