この問題はInheritance Configuration下SQLAlchemyのドキュメントに記述されています。あなたの異なったサブクラスが同じデータベーステーブルを共有する場合は、single table inheritanceを使用する必要があります。
コード例:
class Thing(db.Model):
__tablename__ = 'thing'
id = db.Column(db.Integer, primary_key=True)
actions = db.relationship('Action', backref=db.backref('thing'))
class Action(db.Model):
__tablename__ = 'action'
id = db.Column(db.Integer, primary_key=True)
thing_id = db.Column(db.Integer, db.ForeignKey('thing.id'))
discriminator = db.Column('type', db.String(50))
__mapper_args__ = {'polymorphic_on': discriminator}
class BuildAction(Action):
__mapper_args__ = {'polymorphic_identity': 'build_action'}
time_required = db.Column(db.Integer)
Action
の各サブクラスは、親クラスで定義されthing
関係を継承する必要があります。 action.type
列には、表の各行が表すサブクラスのアクションが記述されています。