summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJosh Marlow <joshmarlow@gmail.com>2016-04-11 23:16:12 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-06-02 14:00:13 -0400
commitcafebe160434973d07b1fa3412064c2870d781f2 (patch)
tree64e1391c0ef259596c5245e3920dced75fb1dd61 /doc
parent31699bd1866bbfc36f1501e5e1b54d3c06cf3b4c (diff)
downloadsqlalchemy-cafebe160434973d07b1fa3412064c2870d781f2.tar.gz
Add schema argument to AutomapBase.prepare()
This allows automap to reflect tables from a schema other than the default without the need to resort to calling MetaData.reflect directly. Change-Id: Ie73cb113bd6d115555c09c5efc33d27ad2c9c512 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/237
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_11.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst
index 898b8a0ba..8e7c962ce 100644
--- a/doc/build/changelog/changelog_11.rst
+++ b/doc/build/changelog/changelog_11.rst
@@ -31,6 +31,15 @@
request courtesy Benjamin Bertrand.
.. change::
+ :tags: orm, feature
+ :pullreq: github:237
+
+ Added :paramref:`.AutomapBase.prepare.schema` to the
+ :meth:`.AutomapBase.prepare` method, to indicate which schema
+ tables should be reflected from if not the default schema.
+ Pull request courtesy Josh Marlow.
+
+ .. change::
:tags: bug, mssql
:pullreq: bitbucket:58