mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 01:22:15 +00:00
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
4 lines
65 B
PL/PgSQL
4 lines
65 B
PL/PgSQL
BEGIN;
|
|
ALTER TABLE estate_settings AUTO_INCREMENT = 100;
|
|
COMMIT;
|