summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2009-12-07 23:08:42 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2009-12-07 23:08:42 +0000
commit048f70ce85d254eff0b5ccf16fd4e15274b0bc6a (patch)
tree41e964852135c7b56142af3ac313b0355470e562 /CHANGES
parent90efddbb1d52e7c26bb71e4b1c2dea121d3a0f8e (diff)
downloadsqlalchemy-048f70ce85d254eff0b5ccf16fd4e15274b0bc6a.tar.gz
- sqlite dialect properly generates CREATE INDEX for a table
that is in an alternate schema. [ticket:1439]
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 1d652a29b..d7c30b55a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -792,6 +792,10 @@ CHANGES
- The cursor associated with connection pool connections
(i.e. _CursorFairy) now proxies `__iter__()` to the
underlying cursor correctly. [ticket:1632]
+
+- sqlite
+ - sqlite dialect properly generates CREATE INDEX for a table
+ that is in an alternate schema. [ticket:1439]
- postgresql
- Added support for reflecting the DOUBLE PRECISION type,