From: Lo?c C. <lo...@us...> - 2001-12-05 19:34:07
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database In directory usw-pr-cvs1:/tmp/cvs-serv1699/chat/install/database Modified Files: mysql.sql pgsql.sql Log Message: add grantor (for Nicolas ;)) Index: mysql.sql =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/mysql.sql,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** mysql.sql 2001/12/04 20:01:04 1.13 --- mysql.sql 2001/12/05 19:34:04 1.14 *************** *** 83,86 **** --- 83,87 ---- room varchar(30) NOT NULL DEFAULT '' , right_level tinyint(1) unsigned NOT NULL DEFAULT '5' , + grantor varchar(30) NOT NULL DEFAULT '' , PRIMARY KEY (username, room), INDEX idx1 (room) Index: pgsql.sql =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/pgsql.sql,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** pgsql.sql 2001/12/04 20:01:04 1.10 --- pgsql.sql 2001/12/05 19:34:04 1.11 *************** *** 84,87 **** --- 84,88 ---- room varchar(30) NOT NULL DEFAULT '' , right_level int2 NOT NULL DEFAULT '5' , + grantor varchar(30) NOT NULL DEFAULT '' , PRIMARY KEY (username, room) ); |