* Increase inventory description columns from 64 characters to 128

As per the suggestions in Mantis 687 (thanks Sakai) to resolve an exception
* This won't apply to any existing inventory tables you have, but shouldn't 
cause any issues with old tables either
This commit is contained in:
Justin Clarke Casey
2008-03-07 14:40:18 +00:00
parent f76bc24de7
commit d48e992aa8
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ CREATE TABLE [inventoryitems] (
[parentFolderID] [varchar](36) default NULL,
[avatarID] [varchar](36) default NULL,
[inventoryName] [varchar](64) default NULL,
[inventoryDescription] [varchar](64) default NULL,
[inventoryDescription] [varchar](128) default NULL,
[inventoryNextPermissions] [int] default NULL,
[inventoryCurrentPermissions] [int] default NULL,
[invType] [int] default NULL,