mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. Thanks A_Biondi and Melanie!
* This builds but might not work. JustinCC will examine.. it may work out of the box.
This commit is contained in:
@@ -12,7 +12,13 @@ CREATE TABLE `inventoryitems` (
|
||||
`creatorID` varchar(36) default NULL,
|
||||
`inventoryBasePermissions` int(10) unsigned NOT NULL default 0,
|
||||
`inventoryEveryOnePermissions` int(10) unsigned NOT NULL default 0,
|
||||
`salePrice` int(11) default NULL,
|
||||
`saleType` tinyint(4) default NULL,
|
||||
`creationDate` int(11) default NULL,
|
||||
`groupID` varchar(63) default NULL,
|
||||
`groupOwned` tinyint(4) default NULL,
|
||||
`flags` int(11) unsigned default NULL,
|
||||
PRIMARY KEY (`inventoryID`),
|
||||
KEY `owner` (`avatarID`),
|
||||
KEY `folder` (`parentFolderID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 2';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 3';
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
ALTER TABLE `inventoryitems`
|
||||
ADD COLUMN `salePrice` int(11) NOT NULL,
|
||||
ADD COLUMN `saleType` tinyint(4) NOT NULL,
|
||||
ADD COLUMN `creationDate` int(11) NOT NULL,
|
||||
ADD COLUMN `groupID` varchar(36) NOT NULL default '00000000-0000-0000-0000-000000000000',
|
||||
ADD COLUMN `groupOwned` tinyint(4) NOT NULL,
|
||||
ADD COLUMN `flags` int(11) unsigned NOT NULL,
|
||||
COMMENT='Rev. 3';
|
||||
Reference in New Issue
Block a user