aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-03 22:11:59 +1000
committerDavid Walter Seikel2016-11-03 22:11:59 +1000
commit7f7e25be924106a47f0d653bf3b32aa8314e7192 (patch)
treedf1ef6ac7aa206097c1387f96a65e51c2e31bf87 /OpenSim/Data/MySQL/Resources/XAssetStore.migrations
parentUsual IG version number in money hack. (diff)
downloadopensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.zip
opensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.tar.gz
opensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.tar.bz2
opensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.tar.xz
MyISAM is still much better performing for OpenSim.
This time we got the file system asset server, even better still. B-)
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/Resources/XAssetStore.migrations4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
index 9459e3e..78d6e51 100644
--- a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
@@ -16,13 +16,13 @@ CREATE TABLE `XAssetsMeta` (
16 `AssetFlags` int(11) NOT NULL, 16 `AssetFlags` int(11) NOT NULL,
17 `CreatorID` varchar(128) NOT NULL, 17 `CreatorID` varchar(128) NOT NULL,
18 PRIMARY KEY (`id`) 18 PRIMARY KEY (`id`)
19) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1'; 19) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Version 1';
20 20
21CREATE TABLE `XAssetsData` ( 21CREATE TABLE `XAssetsData` (
22 `Hash` binary(32) NOT NULL, 22 `Hash` binary(32) NOT NULL,
23 `Data` longblob NOT NULL, 23 `Data` longblob NOT NULL,
24 PRIMARY KEY (`hash`) 24 PRIMARY KEY (`hash`)
25) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1'; 25) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Version 1';
26 26
27COMMIT; 27COMMIT;
28 28