deconforma/db_bootstrap.py

7 lines
87 B
Python

from app import app, db
with app.app_context():
db.create_all()
print("DB success")