Exemple #1
0
def drop_db():
    with app.app_context():
        db.drop_all()
Exemple #2
0
def init_db():
    with app.app_context():
        db.create_all()