From 4e11f97b20babbb1be84fab1a7fdeb9ae7c37542 Mon Sep 17 00:00:00 2001 From: Daniel Quinlan Date: Mon, 24 Jun 2002 22:09:42 +0000 Subject: [PATCH] Fixed bug in INSERT into incrementer table. my bad --- docs/upgrades/upgrade_4.0.4-4.1.0.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_4.0.4-4.1.0.sql b/docs/upgrades/upgrade_4.0.4-4.1.0.sql index 3ff4ac5bf..0679282a6 100644 --- a/docs/upgrades/upgrade_4.0.4-4.1.0.sql +++ b/docs/upgrades/upgrade_4.0.4-4.1.0.sql @@ -30,7 +30,7 @@ CREATE TABLE imageGroup ( PRIMARY KEY (imageGroupId), UNIQUE KEY imageGroupId (imageGroupId) ); -INSERT INTO incrementer (incrementId, nextValue) VALUES('imageGroupId',1); +INSERT INTO incrementer VALUES('imageGroupId',1); INSERT INTO imageGroup (imageGroupId, name, parentId, description) VALUES (0, 'Root', 0, 'Top level'); alter table images add column imageGroupId int not null default 0; INSERT INTO groups (groupId, groupName, description) VALUES (9, 'Image Managers', 'Users that have privileges to add, edit, and delete images from the image manager. Content managers can view by default');