I have a problem with SQL Alchemy, while trying to create a database, i get:
\"sqlalchemy.exc.NoReferencedTableError: Foreign key associated with column \'estate
By adding the following line to my parent table solved my problem. In case of Declarative:
parent
children = relationship("Child")
Otherwise: SQLAlchemy - Classic Mapper
Also try to have a look in here (SO) too, might help.