From: Mike Bayer Date: Fri, 18 Dec 2009 21:11:26 +0000 (+0000) Subject: the arg is on Table, ahhh X-Git-Tag: rel_0_6beta1~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62b2fb87569c7bd7c72fde2f8f7933e3efc2629e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git the arg is on Table, ahhh --- diff --git a/CHANGES b/CHANGES index 775d4c0140..aa8fc73c0e 100644 --- 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