示例#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
def init_db():
	"""
	Create the initial user and file database tables.
	"""
	udb.create_all()
	fdb.create_all()