mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08: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;
|