renamed seed to app_seed

This commit is contained in:
2025-04-25 17:40:25 +02:00
parent c532ff36fd
commit 2611ab39fb
2 changed files with 1 additions and 1 deletions

7
app_seed.py Normal file
View File

@@ -0,0 +1,7 @@
from application import db, app
from application.models import AllowedPlate
with app.app_context():
AllowedPlate.query.delete()
db.session.add(AllowedPlate("MUN389"))
db.session.commit()