|
From: Paul S. O. <ps...@us...> - 2001-11-03 15:15:08
|
Update of /cvsroot/phpbb/phpBB2/db
In directory usw-pr-cvs1:/tmp/cvs-serv32554/db
Modified Files:
mssql_basic.sql mysql_basic.sql postgres_basic.sql
Log Message:
Various changes, added site description to DB
Index: mssql_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/mssql_basic.sql,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** mssql_basic.sql 2001/10/11 22:26:00 1.11
--- mssql_basic.sql 2001/11/03 15:15:05 1.12
***************
*** 14,17 ****
--- 14,18 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename','yourdomain.com');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc','A _little_ text to describe your forum');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_name','phpbb2mssql');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_path','/');
Index: mysql_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/mysql_basic.sql,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -r1.65 -r1.66
*** mysql_basic.sql 2001/10/19 13:28:35 1.65
--- mysql_basic.sql 2001/11/03 15:15:05 1.66
***************
*** 8,11 ****
--- 8,12 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename','yourdomain.com');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc','A _little_ text to describe your forum');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_name','phpbb2mysql');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_path','/');
Index: postgres_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/postgres_basic.sql,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** postgres_basic.sql 2001/10/15 16:08:59 1.14
--- postgres_basic.sql 2001/11/03 15:15:05 1.15
***************
*** 8,11 ****
--- 8,12 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename','yourdomain.com');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc','A _little_ text to describe your forum');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_name','phpbb2postgres');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_path','/');
|