aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/schemas
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-01-10 02:15:52 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-01-10 02:15:52 +0000
commitf4a2d2c94de83124c0b752a73ca1c96090b68901 (patch)
tree357a74394ea18b86b83c4df3eccf5c57e40642a6 /phpBB/db/schemas
parentb2695749c9b8cb0ddc28c4f5fb55409585b5c380 (diff)
downloadforums-f4a2d2c94de83124c0b752a73ca1c96090b68901.tar
forums-f4a2d2c94de83124c0b752a73ca1c96090b68901.tar.gz
forums-f4a2d2c94de83124c0b752a73ca1c96090b68901.tar.bz2
forums-f4a2d2c94de83124c0b752a73ca1c96090b68901.tar.xz
forums-f4a2d2c94de83124c0b752a73ca1c96090b68901.zip
Change prune_enable default to 0 as per bug #498800
git-svn-id: file:///svn/phpbb/trunk@1833 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/schemas')
-rw-r--r--phpBB/db/schemas/mysql_schema.sql2
-rw-r--r--phpBB/db/schemas/oracle_schema.sql2
-rw-r--r--phpBB/db/schemas/postgres_schema.sql2
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/db/schemas/mysql_schema.sql b/phpBB/db/schemas/mysql_schema.sql
index 5e49ee5426..a15260e266 100644
--- a/phpBB/db/schemas/mysql_schema.sql
+++ b/phpBB/db/schemas/mysql_schema.sql
@@ -131,7 +131,7 @@ CREATE TABLE phpbb_forums (
forum_topics mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
prune_next int(11),
- prune_enable tinyint(1) DEFAULT '1' NOT NULL,
+ prune_enable tinyint(1) DEFAULT '0' NOT NULL,
auth_view tinyint(2) DEFAULT '0' NOT NULL,
auth_read tinyint(2) DEFAULT '0' NOT NULL,
auth_post tinyint(2) DEFAULT '0' NOT NULL,
diff --git a/phpBB/db/schemas/oracle_schema.sql b/phpBB/db/schemas/oracle_schema.sql
index 9894cbaef7..d27300067d 100644
--- a/phpBB/db/schemas/oracle_schema.sql
+++ b/phpBB/db/schemas/oracle_schema.sql
@@ -151,7 +151,7 @@ CREATE TABLE phpbb_forums (
forum_posts number(4) DEFAULT '0' NOT NULL,
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_enable number(4) DEFAULT '0' NOT NULL,
prune_next number(4),
auth_view number(4) DEFAULT '0' NOT NULL,
auth_read number(4) DEFAULT '0' NOT NULL,
diff --git a/phpBB/db/schemas/postgres_schema.sql b/phpBB/db/schemas/postgres_schema.sql
index 6f0b6a61ac..53d1126d7d 100644
--- a/phpBB/db/schemas/postgres_schema.sql
+++ b/phpBB/db/schemas/postgres_schema.sql
@@ -115,7 +115,7 @@ CREATE TABLE phpbb_forums (
forum_posts int4 DEFAULT '0' NOT NULL,
forum_topics int4 DEFAULT '0' NOT NULL,
forum_last_post_id int4 DEFAULT '0' NOT NULL,
- prune_enable int2 DEFAULT '1' NOT NULL,
+ prune_enable int2 DEFAULT '0' NOT NULL,
prune_next int,
auth_view int2 DEFAULT '0' NOT NULL,
auth_read int2 DEFAULT '0' NOT NULL,