diff options
author | Melanie | 2010-03-22 20:38:27 +0000 |
---|---|---|
committer | Melanie | 2010-03-22 20:38:27 +0000 |
commit | 07a6b37001080ce197a4715776d100bcb9b2bb54 (patch) | |
tree | c50414be12e70f3d5d8266bb314bf316fdafad29 /OpenSim | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-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.sql | 3 |
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 @@ | |||
1 | BEGIN; | ||
2 | ALTER TABLE estate_settings AUTO_INCREMENT = 100; | ||
3 | COMMIT; | ||