Update of /cvsroot/cobricks/cobricks2/src/org/cobricks/category/db
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv30787/src/org/cobricks/category/db
Modified Files:
category.xml
Log Message:
In ontology the length of item/category-clas is 50 in DB it was 15. I changed the DB to varchar(50)
Index: category.xml
===================================================================
RCS file: /cvsroot/cobricks/cobricks2/src/org/cobricks/category/db/category.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- category.xml 2 May 2006 11:55:07 -0000 1.2
+++ category.xml 29 May 2006 09:14:27 -0000 1.3
@@ -4,7 +4,7 @@
<column name="catid" type="int" primarykey="true"/>
<column name="globalid" type="varchar(64)" notnull="true"/>
- <column name="categoryclass" type="varchar(30)"/>
+ <column name="categoryclass" type="varchar(50)"/>
<column name="creatorid" type="int"/>
<column name="creationtime" type="timestamp"/>
<column name="updaterid" type="int"/>
|