6 lines
108 B
Python
6 lines
108 B
Python
from webapp.models import db
|
|
|
|
|
|
def populate_db(app):
|
|
with app.app_context():
|
|
db.session.commit() |