#19708349 column length fixed

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8332 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2011-04-22 09:57:08 +00:00
parent baefb4536b
commit 1713666795
2 changed files with 2 additions and 2 deletions

View file

@ -235,7 +235,7 @@
}
//2011. 04. 07 adding description column to document categories
if(!$oDB->isColumnExists("document_categories","description")) $oDB->addColumn('document_categories',"description","varchar",2000,0);
if(!$oDB->isColumnExists("document_categories","description")) $oDB->addColumn('document_categories',"description","varchar",200,0);
return new Object(0,'success_updated');

View file

@ -10,5 +10,5 @@
<column name="list_order" type="number" size="11" notnull="notnull" />
<column name="group_srls" type="text" />
<column name="color" type="varchar" size="11" />
<column name="description" type="varchar" size="2000" />
<column name="description" type="varchar" size="200" />
</table>