Example #1
0
def drop_db():
    """
    Drops a database with all of the tables defined in
    your Alchemy models
    """
    db.drop_all()
Example #2
0
 def tearDown(self):
     db.session.remove()
     db.drop_all()
Example #3
0
 def tearDown(self):
     db.session.remove()
     db.drop_all()
Example #4
0
def drop_db():
    """
    Drops a database with all of the tables defined in
    your Alchemy models
    """
    db.drop_all()