I have a problem with SQL Alchemy, while trying to create a database, i get:
\"sqlalchemy.exc.NoReferencedTableError: Foreign key associated with column \'estate
The solution is to replace the strings with actual columns:
Column('person_id', Integer, ForeignKey(tbl_person.c.id), primary_key=True)