コード例 #1
0
def db():
    with app.app_context():
        from server.db import db
        db.session.close()
        db.drop_all()
        db.create_all()
        yield db
コード例 #2
0
def db():
    with app.app_context():
        from server.db import db
        db.session.close()
        db.drop_all()
        db.create_all()
        yield db
コード例 #3
0
ファイル: manage.py プロジェクト: tsclay/managem
def create_db():
    db.drop_all()
    db.create_all()
    db.session.commit()
コード例 #4
0
ファイル: test.py プロジェクト: ptouati/banner-creator
 def tearDown(self):
     """
     Deletes created tables and closes the session instance
     """
     db.session.remove()
     db.drop_all(app=app)
コード例 #5
0
def drop_db():
	db.drop_all()
コード例 #6
0
def drop_db():
    db.drop_all()