]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
link to declarative concrete helper doc rel_0_7_3
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 16 Oct 2011 18:24:29 +0000 (14:24 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 16 Oct 2011 18:24:29 +0000 (14:24 -0400)
doc/build/orm/inheritance.rst
lib/sqlalchemy/ext/declarative.py

index 351a493ccaa992d1b0fdf2877225d75b926de0fe..5f9a28671a357d47820e132788b8a0365bb29f7c 100644 (file)
@@ -528,9 +528,11 @@ Upon select, the polymorphic union produces a query like this:
     ) AS pjoin
     []
 
-For a recipe that sets up concrete inheritance using declarative, see the `DeclarativeAbstractConcreteBase
-<http://www.sqlalchemy.org/trac/wiki/UsageRecipes/DeclarativeAbstractConcreteBase>`_ recipe on the wiki.
-Other helpers for concrete inheritance with declarative are currently under development.
+Concrete Inheritance with Declarative
+++++++++++++++++++++++++++++++++++++++
+
+As of 0.7.3, the :ref:`declarative_toplevel` module includes helpers for concrete inheritance.
+See :ref:`declarative_concrete_helpers` for more information.
 
 Using Relationships with Inheritance
 ------------------------------------
index a7a478ddfb6ce238fc66df473f60a5411ee8f1ed..ecd620a7586a3138f91e88e5141c35805654a087 100755 (executable)
@@ -459,6 +459,8 @@ before the class is built::
         __table__ = managers
         __mapper_args__ = {'polymorphic_identity':'manager', 'concrete':True}
 
+.. _declarative_concrete_helpers:
+
 Using the Concrete Helpers
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^