|
From: Bart v. B. <ba...@us...> - 2002-01-25 21:53:09
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv5878/db/schemas
Modified Files:
mysql_basic.sql postgres_basic.sql
Log Message:
Implemented Record of online users
Index: mysql_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_basic.sql,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** mysql_basic.sql 2002/01/11 11:14:15 1.9
--- mysql_basic.sql 2002/01/25 21:53:05 1.10
***************
*** 54,57 ****
--- 54,59 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('record_online_users', '0');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('record_online_date', '0');
Index: postgres_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/postgres_basic.sql,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** postgres_basic.sql 2002/01/11 11:14:15 1.9
--- postgres_basic.sql 2002/01/25 21:53:05 1.10
***************
*** 55,58 ****
--- 55,60 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('record_online_users', '0');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('record_online_date', '0');
|