コード例 #1
0
ファイル: __init__.py プロジェクト: LeonardoXavier/f1
def init_model(engine):
    """Call me before using any of the tables or classes in the model"""
    Session.configure(bind=engine)
    Base.metadata.create_all(bind=Session.bind)