예제 #1
0
def drop_db():
    """
    Drops a database with all of the tables defined in
    your Alchemy models
    """
    db.drop_all()
예제 #2
0
 def tearDown(self):
     db.session.remove()
     db.drop_all()
예제 #3
0
파일: tests.py 프로젝트: Adrellias/sketchy
 def tearDown(self):
     db.session.remove()
     db.drop_all()
예제 #4
0
파일: manage.py 프로젝트: hj3938/sketchy
def drop_db():
    """
    Drops a database with all of the tables defined in
    your Alchemy models
    """
    db.drop_all()