Spaces:
Running
Running
| from app import app, db, Subject, Category, Article | |
| with app.app_context(): | |
| # Delete in correct order to avoid foreign key constraints | |
| Article.query.delete() | |
| Category.query.delete() | |
| Subject.query.delete() | |
| db.session.commit() | |
| print("Toutes les données d'exemple ont été supprimées.") |