Files
VerpotJeLot/init_db.py
2025-05-22 20:39:04 +02:00

12 lines
251 B
Python

from app import app, db
from flask_migrate import upgrade
def init_db():
with app.app_context():
# Create all tables
db.create_all()
# Run any pending migrations
upgrade()
if __name__ == '__main__':
init_db()