Files
opensim/OpenSim/Data/MySQL/Resources/UpgradeItemsTableToVersion3.sql
Teravus Ovares a9cc76e0ef * 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.
2008-04-30 16:08:24 +00:00

9 lines
363 B
SQL

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';