Default class for SQLAlchemy single table inheritance
- by eclaird
I've set up a single table inheritance, but I need a "default" class to use when
an unknown polymorphic identity is encountered. The database is not in my
control and so the data can be pretty much anything.
A working example setup:
import sqlalchemy as sa
from sqlalchemy import orm
engine = sa.create_engine('sqlite://')
metadata =…