mirror of
https://github.com/StefBuwalda/ProjectIOT.git
synced 2025-10-30 11:19:57 +00:00
7 lines
156 B
Python
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()
|