From: Diana Clarke Date: Sun, 23 Dec 2012 21:13:59 +0000 (-0500) Subject: typo in joined table inheritance docs see #2641 X-Git-Tag: rel_0_8_0~37^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49ff85bfd85a9b8e40ce3f2289238fab36901071;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo in joined table inheritance docs see #2641 --- diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index cf8c6dc287..e3067b0717 100644 --- a/doc/build/orm/inheritance.rst +++ b/doc/build/orm/inheritance.rst @@ -72,7 +72,7 @@ columns), and in most cases a foreign key reference to the parent table:: 'polymorphic_identity':'engineer', } - class Manager(Person): + class Manager(Employee): __tablename__ = 'manager' id = Column(Integer, ForeignKey('employee.id'), primary_key=True) manager_name = Column(String(30))