|
From: Ken T. <ke...@us...> - 2003-07-24 04:50:54
|
Update of /cvsroot/phpbt/phpbt/schemas In directory sc8-pr-cvs1:/tmp/cvs-serv2459/schemas Modified Files: mysql.in Log Message: Developers group is new automatically assignable... Index: mysql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- mysql.in 24 Jul 2003 04:47:13 -0000 1.42 +++ mysql.in 24 Jul 2003 04:50:51 -0000 1.43 @@ -291,7 +291,7 @@ # Start off with three user levels... INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (1, 'Admin', 1); INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (2, 'User', 1); -INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (3, 'Developer', 1); +INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked, assignable) VALUES (3, 'Developer', 1, 1); create table TBL_AUTH_GROUP_seq (id int unsigned auto_increment not null primary key); insert into TBL_AUTH_GROUP_seq values (3); |