def init_db(): """ Create the initial user, file and entry database tables. """ udb.create_all() fdb.create_all() edb.create_all()
def init_db(): """ Create the initial user and file database tables. """ udb.create_all() fdb.create_all()