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
slimupdates
Melanie 2010-03-22 20:38:27 +00:00
parent d378c758e1
commit 07a6b37001
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
BEGIN;
ALTER TABLE estate_settings AUTO_INCREMENT = 100;
COMMIT;