class Parent(Base):
association_table = Table('association', Base.metadata,
Column('right_id', Integer, ForeignKey('right.id'))
parent_id = Column(Integer, ForeignKey('parent.id'))