[csw-devel] SF.net SVN: gar:[21457] csw/mgar/gar/v2/lib/python/models.py
chninkel at users.sourceforge.net
chninkel at users.sourceforge.net
Mon Jul 8 17:52:30 CEST 2013
Revision: 21457
http://gar.svn.sourceforge.net/gar/?rev=21457&view=rev
Author: chninkel
Date: 2013-07-08 15:52:29 +0000 (Mon, 08 Jul 2013)
Log Message:
-----------
gar/v2: increase pkgname and catalogname field size in sql database to support Solaris 5.11 long system package names
Modified Paths:
--------------
csw/mgar/gar/v2/lib/python/models.py
Modified: csw/mgar/gar/v2/lib/python/models.py
===================================================================
--- csw/mgar/gar/v2/lib/python/models.py 2013-07-08 15:32:26 UTC (rev 21456)
+++ csw/mgar/gar/v2/lib/python/models.py 2013-07-08 15:52:29 UTC (rev 21457)
@@ -105,8 +105,8 @@
class Pkginst(sqlobject.SQLObject):
- pkgname = sqlobject.UnicodeCol(length=50, unique=True, notNone=True)
- catalogname = sqlobject.UnicodeCol(default=None, length=50)
+ pkgname = sqlobject.UnicodeCol(length=250, unique=True, notNone=True)
+ catalogname = sqlobject.UnicodeCol(default=None, length=250)
pkg_desc = sqlobject.UnicodeCol(default=None, length=250)
srv4_files = sqlobject.MultipleJoin('Srv4FileStats')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list