diff options
author | Sean Dague | 2008-07-03 18:45:32 +0000 |
---|---|---|
committer | Sean Dague | 2008-07-03 18:45:32 +0000 |
commit | 8eb57b68f37d303b17ccf61c96145e895ff34800 (patch) | |
tree | 72f73c0e481d1a4e51d5a05605b0b96ed634934d /OpenSim/Data/MySQL/Resources | |
parent | add a couple of LL conversion properties to SOP. I'll wait to clean (diff) | |
download | opensim-SC_OLD-8eb57b68f37d303b17ccf61c96145e895ff34800.zip opensim-SC_OLD-8eb57b68f37d303b17ccf61c96145e895ff34800.tar.gz opensim-SC_OLD-8eb57b68f37d303b17ccf61c96145e895ff34800.tar.bz2 opensim-SC_OLD-8eb57b68f37d303b17ccf61c96145e895ff34800.tar.xz |
migrate the myisam mysql regions to innodb
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/006_RegionStore.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/006_RegionStore.sql b/OpenSim/Data/MySQL/Resources/006_RegionStore.sql new file mode 100644 index 0000000..c1ba5b8 --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/006_RegionStore.sql | |||
@@ -0,0 +1,12 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | alter table landaccesslist ENGINE = InnoDB; | ||
4 | alter table migrations ENGINE = InnoDB; | ||
5 | alter table primitems ENGINE = InnoDB; | ||
6 | alter table prims ENGINE = InnoDB; | ||
7 | alter table primshapes ENGINE = InnoDB; | ||
8 | alter table regionsettings ENGINE = InnoDB; | ||
9 | alter table terrain ENGINE = InnoDB; | ||
10 | |||
11 | COMMIT; | ||
12 | |||