コード例 #1
0
ファイル: manager.py プロジェクト: wgcg0310/maple-bbs
def init_db():
    """
    Drops and re-creates the SQL schema
    """
    db.drop_all()
    db.configure_mappers()
    db.create_all()
    db.session.commit()
コード例 #2
0
ファイル: runserver.py プロジェクト: honmaple/maple-bbs
def initdb():
    """
    Drops and re-creates the SQL schema
    """
    db.drop_all()
    db.configure_mappers()
    db.create_all()
    db.session.commit()