Files
ProjectIOT/seed.py
2025-04-25 16:33:01 +02:00

7 lines
168 B
Python

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