|
From: Paul S. O. <ps...@us...> - 2002-01-10 02:15:54
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv11399/db/schemas
Modified Files:
mysql_schema.sql oracle_schema.sql postgres_schema.sql
Log Message:
Change prune_enable default to 0 as per bug #498800
Index: mysql_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_schema.sql,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** mysql_schema.sql 2002/01/03 02:27:31 1.12
--- mysql_schema.sql 2002/01/10 02:15:52 1.13
***************
*** 132,136 ****
forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
prune_next int(11),
! prune_enable tinyint(1) DEFAULT '1' NOT NULL,
auth_view tinyint(2) DEFAULT '0' NOT NULL,
auth_read tinyint(2) DEFAULT '0' NOT NULL,
--- 132,136 ----
forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
prune_next int(11),
! prune_enable tinyint(1) DEFAULT '0' NOT NULL,
auth_view tinyint(2) DEFAULT '0' NOT NULL,
auth_read tinyint(2) DEFAULT '0' NOT NULL,
Index: oracle_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/oracle_schema.sql,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** oracle_schema.sql 2002/01/03 02:27:31 1.4
--- oracle_schema.sql 2002/01/10 02:15:52 1.5
***************
*** 152,156 ****
forum_topics number(4) DEFAULT '0' NOT NULL,
forum_last_post_id number(4) DEFAULT '0' NOT NULL,
! prune_enable number(4) DEFAULT '1' NOT NULL,
prune_next number(4),
auth_view number(4) DEFAULT '0' NOT NULL,
--- 152,156 ----
forum_topics number(4) DEFAULT '0' NOT NULL,
forum_last_post_id number(4) DEFAULT '0' NOT NULL,
! prune_enable number(4) DEFAULT '0' NOT NULL,
prune_next number(4),
auth_view number(4) DEFAULT '0' NOT NULL,
Index: postgres_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/postgres_schema.sql,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** postgres_schema.sql 2002/01/03 02:27:31 1.14
--- postgres_schema.sql 2002/01/10 02:15:52 1.15
***************
*** 116,120 ****
forum_topics int4 DEFAULT '0' NOT NULL,
forum_last_post_id int4 DEFAULT '0' NOT NULL,
! prune_enable int2 DEFAULT '1' NOT NULL,
prune_next int,
auth_view int2 DEFAULT '0' NOT NULL,
--- 116,120 ----
forum_topics int4 DEFAULT '0' NOT NULL,
forum_last_post_id int4 DEFAULT '0' NOT NULL,
! prune_enable int2 DEFAULT '0' NOT NULL,
prune_next int,
auth_view int2 DEFAULT '0' NOT NULL,
|