* Change new inventory groupID field to 36 rather than 63

* Add updated stub mssql inventory sql (only really because I was in the middle of this when I spotted the numeric transposition)
0.6.0-stable
Justin Clarke Casey 2008-04-30 19:13:06 +00:00
parent 9817363b93
commit f57ff4c36b
2 changed files with 8 additions and 2 deletions

View File

@ -17,7 +17,13 @@ CREATE TABLE [inventoryitems] (
[invType] [int] default NULL,
[creatorID] [varchar](36) default NULL,
[inventoryBasePermissions] [int] NOT NULL default 0,
[inventoryEveryOnePermissions] [int] NOT NULL default 0,
[inventoryEveryOnePermissions] [int] NOT NULL default 0,
[salePrice] [int] default NULL,
[saleType] [smallint] default NULL,
[creationDate] [int] default NULL,
[groupID] [varchar](36) default NULL,
[groupOwned] [smallint] default NULL,
[flags] [int] unsigned default NULL,
PRIMARY KEY CLUSTERED
(
[inventoryID] ASC

View File

@ -15,7 +15,7 @@ CREATE TABLE `inventoryitems` (
`salePrice` int(11) default NULL,
`saleType` tinyint(4) default NULL,
`creationDate` int(11) default NULL,
`groupID` varchar(63) default NULL,
`groupID` varchar(36) default NULL,
`groupOwned` tinyint(4) default NULL,
`flags` int(11) unsigned default NULL,
PRIMARY KEY (`inventoryID`),