Tagged Questions
2
votes
1answer
659 views
SQLAlchemy Polymorphic Relationship with Concrete Inheritance
I am using the concrete table inheritance with SQLAlchemy. In declartive style model class, I have configured it successfully.
My code just like:
class Entry(AbstractConcreteBase, db.Model):
...