Files
opensim/OpenSim/Data/MySQL/Resources/032_RegionStore.sql
Melanie 07a6b37001 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
2010-03-22 20:38:27 +00:00

4 lines
65 B
PL/PgSQL

BEGIN;
ALTER TABLE estate_settings AUTO_INCREMENT = 100;
COMMIT;