Example #1
0
def dropall():
	"Drops all database tables"

	if prompt_bool("Are you sure ? You will lose all your data !"):
		db.drop_all()
Example #2
0
def dropall():
    if prompt_bool("Are you sure? You will lose all your data!"):
        db.drop_all()
Example #3
0
File: manage.py Project: ajaxj/fkmv
def dropall():
    if prompt_bool("Are you sure? You will lose all your data!"):
        db.drop_all()
Example #4
0
def dropall():
    "Drops all database tables"
    
    if prompt_bool("Are you sure ? You will lose all your data !"):
        db.drop_all()