7 lines
87 B
Python
7 lines
87 B
Python
from app import app, db
|
|
|
|
with app.app_context():
|
|
db.create_all()
|
|
|
|
print("DB success")
|