fixed typo

This commit is contained in:
JT Smith 2004-02-12 16:10:59 +00:00
parent 67848ed9a0
commit 3e22161d8b

View file

@ -348,7 +348,7 @@ INSERT INTO template VALUES (4,'Tab Form','<tmpl_if displayTitle>\r\n <h1><tm
alter table groups add column isEditable int not null default 1;
alter table groups add column showInForms int not null default 1;
update groups set isEditable=0 where groupId in (1,2,7);
delete from groupings where groupId is in (1,7,2,5);
delete from groupings where groupId in (1,7,2,5);
insert into groupings (groupId,userId) values (1,1);
insert into groupings (groupId,userId) select 7, userId from users;
insert into groupings (groupId,userId) select 2, userId from users where userId<>1;