summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2020-08-07 22:38:24 +0200
committerFederico Caselli <cfederico87@gmail.com>2020-08-18 22:03:28 +0000
commit8e01a928d9559014413d08855c187b563c35ae72 (patch)
treeb3ba77209c098aa5da8cd18cb95a64c85f5198f0 /doc
parent0901190bb440580f0664fe3f6310173762b908e0 (diff)
downloadsqlalchemy-8e01a928d9559014413d08855c187b563c35ae72.tar.gz
Support data types for CREATE SEQUENCE in PostgreSQL
Allow specifying the data type when creating a :class:`.Sequence` in PostgreSQL by using the parameter :paramref:`.Sequence.data_type`. Fixes: #5498 Change-Id: I2b4a80aa89b1503c56748dc3ecd2cf145faddd8b
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_14/5498.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_14/5498.rst b/doc/build/changelog/unreleased_14/5498.rst
new file mode 100644
index 000000000..d3eb84801
--- /dev/null
+++ b/doc/build/changelog/unreleased_14/5498.rst
@@ -0,0 +1,6 @@
+.. change::
+ :tags: sql, postgresql
+ :tickets: 5498
+
+ Allow specifying the data type when creating a :class:`.Sequence` in
+ PostgreSQL by using the parameter :paramref:`.Sequence.data_type`.