From 8eb57b68f37d303b17ccf61c96145e895ff34800 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 3 Jul 2008 18:45:32 +0000 Subject: [PATCH] migrate the myisam mysql regions to innodb --- OpenSim/Data/MySQL/Resources/006_RegionStore.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 OpenSim/Data/MySQL/Resources/006_RegionStore.sql diff --git a/OpenSim/Data/MySQL/Resources/006_RegionStore.sql b/OpenSim/Data/MySQL/Resources/006_RegionStore.sql new file mode 100644 index 0000000000..c1ba5b808d --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/006_RegionStore.sql @@ -0,0 +1,12 @@ +BEGIN; + +alter table landaccesslist ENGINE = InnoDB; +alter table migrations ENGINE = InnoDB; +alter table primitems ENGINE = InnoDB; +alter table prims ENGINE = InnoDB; +alter table primshapes ENGINE = InnoDB; +alter table regionsettings ENGINE = InnoDB; +alter table terrain ENGINE = InnoDB; + +COMMIT; +