Added capbility to use MySQL as the database backend in stand alone mode for assets and inventory.

Added asset_plugin key to "StandAlone" section of OpenSim.ini
This commit is contained in:
Tleiades Hax
2007-10-13 09:21:08 +00:00
parent e8c1de8e72
commit f6aeff6cc3
4 changed files with 7 additions and 31 deletions

View File

@@ -2,8 +2,8 @@ CREATE TABLE `assets` (
`id` binary(16) NOT NULL,
`name` varchar(64) NOT NULL,
`description` varchar(64) NOT NULL,
`assetType` TINYINT(4) NOT NULL,
`invType` TINYINT(4) NOT NULL,
`assetType` smallint(5) unsigned NOT NULL,
`invType` smallint(5) unsigned NOT NULL,
`local` tinyint(1) NOT NULL,
`temporary` tinyint(1) NOT NULL,
`data` longblob NOT NULL,