Files
ProjectIOT/app_seed.py
DaanoGames 2f7a499c91 Numberplate shows on Dash
Added logs.html for the logs page
Changed dashboard.html so the numberplates show on the dashboard
Moved models.py to to the dashboard folder
2025-05-22 13:16:30 +02:00

8 lines
210 B
Python

from application import db, app
from application.dashboard.models import AllowedPlate
with app.app_context():
AllowedPlate.query.delete()
db.session.add(AllowedPlate("MUN389"))
db.session.commit()