mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
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
This commit is contained in:
3
OpenSim/Data/MySQL/Resources/032_RegionStore.sql
Normal file
3
OpenSim/Data/MySQL/Resources/032_RegionStore.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
BEGIN;
|
||||
ALTER TABLE estate_settings AUTO_INCREMENT = 100;
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user