[SQL-CVS] SQLObject/SQLObject Col.py,1.4,1.5
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <ian...@us...> - 2003-04-07 23:27:07
|
Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv8439/SQLObject
Modified Files:
Col.py
Log Message:
Default SQLite to typless (i.e., Col can be used with auto schema
generation)
Index: Col.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/Col.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Col.py 7 Apr 2003 19:48:40 -0000 1.4
--- Col.py 7 Apr 2003 23:27:02 -0000 1.5
***************
*** 123,127 ****
def _sqliteType(self):
! return self._sqlType()
def mysqlCreateSQL(self):
--- 123,128 ----
def _sqliteType(self):
! # SQLite is naturally typeless
! return ''
def mysqlCreateSQL(self):
|