Files
ProjectIOT/seed.py
2025-04-23 00:22:11 +02:00

7 lines
156 B
Python

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