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