예제 #1
0
파일: app.py 프로젝트: ToucheSir/svblog
def init_db():
    """
    Create the initial user, file and entry database tables.
    """
    udb.create_all()
    fdb.create_all()
    edb.create_all()
예제 #2
0
def init_db():
    """
	Create the initial user and file database tables.
	"""
    udb.create_all()
    fdb.create_all()
예제 #3
0
파일: app.py 프로젝트: ljb-2000/flask-demo
def init_db():
	"""
	Create the initial user and file database tables.
	"""
	udb.create_all()
	fdb.create_all()