aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie2010-03-22 20:38:27 +0000
committerMelanie2010-03-22 20:38:27 +0000
commit07a6b37001080ce197a4715776d100bcb9b2bb54 (patch)
treec50414be12e70f3d5d8266bb314bf316fdafad29 /OpenSim
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC_OLD-07a6b37001080ce197a4715776d100bcb9b2bb54.zip
opensim-SC_OLD-07a6b37001080ce197a4715776d100bcb9b2bb54.tar.gz
opensim-SC_OLD-07a6b37001080ce197a4715776d100bcb9b2bb54.tar.bz2
opensim-SC_OLD-07a6b37001080ce197a4715776d100bcb9b2bb54.tar.xz
Somehow the starting estate number in MySQL was lost. This adds a migration
to start estates at 100. Existing databases having autcreated estates below 100 will see a gap in estate numbering. Other database implementors need to ensure that no estates with numbers less that 100 are autocreated, unless they are prepared to deal with the viewer's built-in notions of Linden Mainland
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Data/MySQL/Resources/032_RegionStore.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/032_RegionStore.sql b/OpenSim/Data/MySQL/Resources/032_RegionStore.sql
new file mode 100644
index 0000000..dca5de7
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/032_RegionStore.sql
@@ -0,0 +1,3 @@
1BEGIN;
2ALTER TABLE estate_settings AUTO_INCREMENT = 100;
3COMMIT;