diff options
author | Federico Caselli <cfederico87@gmail.com> | 2020-08-24 21:13:49 +0200 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2020-08-24 21:13:49 +0200 |
commit | 05bb556d721d1b4859752f1fce543661d15c4779 (patch) | |
tree | a0863a206ac775f003717fae67a54c0d3edaca14 /lib/sqlalchemy/sql | |
parent | 317f2e1be2b06cdc12bc84510eb743d9752763dd (diff) | |
download | sqlalchemy-05bb556d721d1b4859752f1fce543661d15c4779.tar.gz |
Improve docs of Identity columns.
Change-Id: Iba85ac3c2c9f40878768d74a5dd33083fc68e504
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r-- | lib/sqlalchemy/sql/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index c2a41205f..5c16b29ff 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -4697,7 +4697,7 @@ class Identity(IdentityOptions, FetchedValue, SchemaItem): :param on_null: Set to ``True`` to specify ON NULL in conjunction with a - 'by default' identity column. This option is only supported on + ``always=False`` identity column. This option is only supported on some backends, like Oracle. :param start: the starting index of the sequence. |