mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
[ticket/10650] Revert merge of 'rahulr92/ticket/10650' into develop
The pull request (#654) was merged a little too quickly. In particular, display_last_subject per-forum option needs consensus. This reverts commitb1fb34a4d7
, reversing changes made to7d6b289671
. PHPBB3-10650
This commit is contained in:
@@ -376,7 +376,6 @@ CREATE TABLE phpbb_forums (
|
||||
forum_options INTEGER DEFAULT 0 NOT NULL,
|
||||
display_subforum_list INTEGER DEFAULT 1 NOT NULL,
|
||||
display_on_index INTEGER DEFAULT 1 NOT NULL,
|
||||
display_last_subject INTEGER DEFAULT 1 NOT NULL,
|
||||
enable_indexing INTEGER DEFAULT 1 NOT NULL,
|
||||
enable_icons INTEGER DEFAULT 1 NOT NULL,
|
||||
enable_prune INTEGER DEFAULT 0 NOT NULL,
|
||||
|
@@ -455,7 +455,6 @@ CREATE TABLE [phpbb_forums] (
|
||||
[forum_options] [int] DEFAULT (0) NOT NULL ,
|
||||
[display_subforum_list] [int] DEFAULT (1) NOT NULL ,
|
||||
[display_on_index] [int] DEFAULT (1) NOT NULL ,
|
||||
[display_last_subject] [int] DEFAULT (1) NOT NULL ,
|
||||
[enable_indexing] [int] DEFAULT (1) NOT NULL ,
|
||||
[enable_icons] [int] DEFAULT (1) NOT NULL ,
|
||||
[enable_prune] [int] DEFAULT (0) NOT NULL ,
|
||||
|
@@ -262,7 +262,6 @@ CREATE TABLE phpbb_forums (
|
||||
forum_options int(20) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
display_subforum_list tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
display_on_index tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
display_last_subject tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_indexing tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_icons tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_prune tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
|
@@ -262,7 +262,6 @@ CREATE TABLE phpbb_forums (
|
||||
forum_options int(20) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
display_subforum_list tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
display_on_index tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
display_last_subject tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_indexing tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_icons tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_prune tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
|
@@ -522,7 +522,6 @@ CREATE TABLE phpbb_forums (
|
||||
forum_options number(20) DEFAULT '0' NOT NULL,
|
||||
display_subforum_list number(1) DEFAULT '1' NOT NULL,
|
||||
display_on_index number(1) DEFAULT '1' NOT NULL,
|
||||
display_last_subject number(1) DEFAULT '1' NOT NULL,
|
||||
enable_indexing number(1) DEFAULT '1' NOT NULL,
|
||||
enable_icons number(1) DEFAULT '1' NOT NULL,
|
||||
enable_prune number(1) DEFAULT '0' NOT NULL,
|
||||
|
@@ -398,7 +398,6 @@ CREATE TABLE phpbb_forums (
|
||||
forum_options INT4 DEFAULT '0' NOT NULL CHECK (forum_options >= 0),
|
||||
display_subforum_list INT2 DEFAULT '1' NOT NULL CHECK (display_subforum_list >= 0),
|
||||
display_on_index INT2 DEFAULT '1' NOT NULL CHECK (display_on_index >= 0),
|
||||
display_last_subject INT2 DEFAULT '1' NOT NULL CHECK (display_last_subject >= 0),
|
||||
enable_indexing INT2 DEFAULT '1' NOT NULL CHECK (enable_indexing >= 0),
|
||||
enable_icons INT2 DEFAULT '1' NOT NULL CHECK (enable_icons >= 0),
|
||||
enable_prune INT2 DEFAULT '0' NOT NULL CHECK (enable_prune >= 0),
|
||||
|
@@ -255,7 +255,6 @@ CREATE TABLE phpbb_forums (
|
||||
forum_options INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
display_subforum_list INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
display_on_index INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
display_last_subject INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
enable_indexing INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
enable_icons INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
enable_prune INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
|
Reference in New Issue
Block a user