summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/schema.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-03 11:34:51 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-03 11:34:51 -0400
commit3e4286079c760e9f8e3e76278b2a0c4d406a230d (patch)
tree0df909f5aaf8497d690ba59dffcdaac4bc6fc021 /lib/sqlalchemy/sql/schema.py
parent2ef224a5bac0eaf8f3ae7802762784a64bec40fc (diff)
downloadsqlalchemy-3e4286079c760e9f8e3e76278b2a0c4d406a230d.tar.gz
- add link to dialect docs for SQLite autoincrement from column autoincrement,
fixes #3110
Diffstat (limited to 'lib/sqlalchemy/sql/schema.py')
-rw-r--r--lib/sqlalchemy/sql/schema.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py
index 121f6da77..f489a7b1d 100644
--- a/lib/sqlalchemy/sql/schema.py
+++ b/lib/sqlalchemy/sql/schema.py
@@ -864,8 +864,11 @@ class Column(SchemaItem, ColumnClause):
SERIAL on Postgresql, and IDENTITY on MS-SQL. It does
*not* issue AUTOINCREMENT for SQLite since this is a
special SQLite flag that is not required for autoincrementing
- behavior. See the SQLite dialect documentation for
- information on SQLite's AUTOINCREMENT.
+ behavior.
+
+ .. seealso::
+
+ :ref:`sqlite_autoincrement`
* The column will be considered to be available as
cursor.lastrowid or equivalent, for those dialects which