Changeset 252
- Timestamp:
- 11/21/08 02:44:41
- Files:
-
- trunk/geniusql/providers/sqlite.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/geniusql/providers/sqlite.py
r251 r252 763 763 # column to autoincrement when you insert NULL. 764 764 # See http://sqlite.org/faq.html#q1. 765 if dbtype is INTEGERand c.key:765 if isinstance(dbtype, INTEGER) and c.key: 766 766 c.autoincrement = True 767 767
