同じテーブルに 2 番目の外部キーを追加すると、次のエラーが発生します。
Please specify the 'onclause' of this join explicitly.
この関係をどのように指定できますか?
class Parent(Base):
First = Column(Integer, ForeignKey('Child.Ex1'))
Second = Column(Integer, ForeignKey('Child.Ex2'))
class Child(Base):
Ex1 = Column(Integer)
Ex2 = Column(Integer)