summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-03-12 17:33:03 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-03-12 17:33:03 -0400
commit36792434c74dea43a0f10f5fe1cc45c4206f01ee (patch)
tree792749694902e82ef088d481fca7a1fa70f7410f /doc
parenta7ef7eccaacae5341bb03a58cc0538718c33c329 (diff)
downloadsqlalchemy-36792434c74dea43a0f10f5fe1cc45c4206f01ee.tar.gz
- Added a new feature :func:`.schema.conv`, the purpose of which is to
mark a constraint name as already having had a naming convention applied. This token will be used by Alembic migrations as of Alembic 0.6.4 in order to render constraints in migration scripts with names marked as already having been subject to a naming convention. re: #2991
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_09.rst9
-rw-r--r--doc/build/core/constraints.rst1
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 20a0b656d..10879e2ca 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -15,6 +15,15 @@
:version: 0.9.4
.. change::
+ :tags: feature, sql
+
+ Added a new feature :func:`.schema.conv`, the purpose of which is to
+ mark a constraint name as already having had a naming convention applied.
+ This token will be used by Alembic migrations as of Alembic 0.6.4
+ in order to render constraints in migration scripts with names marked
+ as already having been subject to a naming convention.
+
+ .. change::
:tags: bug, sql
:paramref:`.MetaData.naming_convention` feature will now also
diff --git a/doc/build/core/constraints.rst b/doc/build/core/constraints.rst
index 3979631b0..580fbc0b6 100644
--- a/doc/build/core/constraints.rst
+++ b/doc/build/core/constraints.rst
@@ -459,6 +459,7 @@ Constraints API
:members:
:inherited-members:
+.. autofunction:: sqlalchemy.schema.conv
.. _schema_indexes: