summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-01-01 13:24:32 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2015-01-01 13:39:42 -0500
commit8f5e4acbf693a375ad687977188a32bc941fd33b (patch)
tree8965514460dbfa69fa99972c0443751ae70f178a /doc
parentda1aa2590851bd5ddc58218fab0e8234d16db97c (diff)
downloadsqlalchemy-8f5e4acbf693a375ad687977188a32bc941fd33b.tar.gz
- Added a new accessor :attr:`.Table.foreign_key_constraints`
to complement the :attr:`.Table.foreign_keys` collection, as well as :attr:`.ForeignKeyConstraint.referred_table`.
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_10.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index 3564ecde1..4b3a17367 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -23,6 +23,13 @@
on compatibility concerns, see :doc:`/changelog/migration_10`.
.. change::
+ :tags: feature, schema
+
+ Added a new accessor :attr:`.Table.foreign_key_constraints`
+ to complement the :attr:`.Table.foreign_keys` collection,
+ as well as :attr:`.ForeignKeyConstraint.referred_table`.
+
+ .. change::
:tags: bug, sqlite
:tickets: 3244, 3261