Exemplo n.º 1
0
def dropall():
    "Drops all database tables"

    if prompt_bool("Are you sure ? You will lose all your data !"):
        db.drop_all()
Exemplo n.º 2
0
 def tearDown(self):
     db.session.remove()
     db.drop_all()
Exemplo n.º 3
0
def dropall():
    "Drops all database tables"

    if prompt_bool("Are you sure ? You will lose all your data !"):
        db.drop_all()