Removed packages that aren't used and assed a script to generate db upgrade

This commit is contained in:
2025-09-03 15:20:49 +02:00
parent bf43999d36
commit bb8f3e6c71
3 changed files with 18 additions and 7 deletions

5
migrate.py Normal file
View File

@@ -0,0 +1,5 @@
from app import app
from flask_migrate import migrate
with app.app_context():
migrate()