]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
the arg is on Table, ahhh
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 18 Dec 2009 21:11:26 +0000 (21:11 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 18 Dec 2009 21:11:26 +0000 (21:11 +0000)
CHANGES

diff --git a/CHANGES b/CHANGES
index 775d4c0140ba26ac162564d56b1afec0145c6658..aa8fc73c0ebe50be879e649f11d94ed90fb60bd9 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -675,10 +675,10 @@ CHANGES
       bind parameters: Date type only accepts date objects (and datetime
       ones, because they inherit from date), Time only accepts time
       objects, and DateTime only accepts date and datetime objects.
-    - Column() supports a keyword argument "sqlite_autoincrement", which
-      applies the SQLite keyword "AUTOINCREMENT" to columns within DDL - 
-      will prevent generation of a separate PRIMARY KEY constraint.
-      [ticket:1016]
+    - Table() supports a keyword argument "sqlite_autoincrement", which
+      applies the SQLite keyword "AUTOINCREMENT" to the single integer
+      primary key column when generating DDL. Will prevent generation of 
+      a separate PRIMARY KEY constraint. [ticket:1016]
       
 - new dialects
     - postgresql+pg8000