mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Change prune_enable default to 0 as per bug #498800
git-svn-id: file:///svn/phpbb/trunk@1833 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b2695749c9
commit
f4a2d2c94d
3 changed files with 3 additions and 3 deletions
|
@ -131,7 +131,7 @@ CREATE TABLE phpbb_forums (
|
||||||
forum_topics mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
forum_topics mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
prune_next int(11),
|
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_view tinyint(2) DEFAULT '0' NOT NULL,
|
||||||
auth_read tinyint(2) DEFAULT '0' NOT NULL,
|
auth_read tinyint(2) DEFAULT '0' NOT NULL,
|
||||||
auth_post tinyint(2) DEFAULT '0' NOT NULL,
|
auth_post tinyint(2) DEFAULT '0' NOT NULL,
|
||||||
|
|
|
@ -151,7 +151,7 @@ CREATE TABLE phpbb_forums (
|
||||||
forum_posts number(4) DEFAULT '0' NOT NULL,
|
forum_posts number(4) DEFAULT '0' NOT NULL,
|
||||||
forum_topics number(4) DEFAULT '0' NOT NULL,
|
forum_topics number(4) DEFAULT '0' NOT NULL,
|
||||||
forum_last_post_id 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),
|
prune_next number(4),
|
||||||
auth_view number(4) DEFAULT '0' NOT NULL,
|
auth_view number(4) DEFAULT '0' NOT NULL,
|
||||||
auth_read number(4) DEFAULT '0' NOT NULL,
|
auth_read number(4) DEFAULT '0' NOT NULL,
|
||||||
|
|
|
@ -115,7 +115,7 @@ CREATE TABLE phpbb_forums (
|
||||||
forum_posts int4 DEFAULT '0' NOT NULL,
|
forum_posts int4 DEFAULT '0' NOT NULL,
|
||||||
forum_topics int4 DEFAULT '0' NOT NULL,
|
forum_topics int4 DEFAULT '0' NOT NULL,
|
||||||
forum_last_post_id 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,
|
prune_next int,
|
||||||
auth_view int2 DEFAULT '0' NOT NULL,
|
auth_view int2 DEFAULT '0' NOT NULL,
|
||||||
auth_read int2 DEFAULT '0' NOT NULL,
|
auth_read int2 DEFAULT '0' NOT NULL,
|
||||||
|
|
Loading…
Add table
Reference in a new issue