[SQL-CVS] SQLObject/tests test.py,1.13,1.14
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-05-12 01:58:24
|
Update of /cvsroot/sqlobject/SQLObject/tests In directory sc8-pr-cvs1:/tmp/cvs-serv22955/tests Modified Files: test.py Log Message: ForeignKey class that is easier to specify Index: test.py =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/tests/test.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** test.py 12 May 2003 01:22:48 -0000 1.13 --- test.py 12 May 2003 01:58:21 -0000 1.14 *************** *** 329,333 **** _columns = [StringCol('zip', length=5), ! KeyCol('personJoiner2ID', foreignKey='PersonJoiner2')] class JoinTest2(SQLObjectTest): --- 329,334 ---- _columns = [StringCol('zip', length=5), ! ForeignKey('PersonJoiner2')] ! # KeyCol('personJoiner2ID', foreignKey='PersonJoiner2')] class JoinTest2(SQLObjectTest): |