Fixed a database migration bug not discovered until now related to nested image groups converting to collateral folders. See the gotchas file for details.

This commit is contained in:
JT Smith 2002-12-10 03:09:40 +00:00
parent 65754d4c03
commit 9eed1e9e5e
2 changed files with 11 additions and 0 deletions

View file

@ -57,6 +57,7 @@ update incrementer set nextValue=nextValue+999 where incrementerId='messageId';
update messageLog set messageLogId=messageLogId+999;
update incrementer set nextValue=nextValue+999 where incrementerId='messageLogId';
update incrementer set nextValue=nextValue+999 where incrementerId='imageGroupId';
update imageGroup set parentId=parentId+999 where imageGroupId>0;
update imageGroup set imageGroupId=imageGroupId+999 where imageGroupId>0;
update images set imageGroupId=imageGroupId+999 where imageGroupId>0;
update incrementer set incrementerId='MailForm_fieldId' where incrementerId='mailFieldId';