mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
ok, i am very sorry, but this needs to be fixed.
Generally, our config table is not really suited for holding large datasets. Because feed settings for the forums to enable news feeds and excluded forums rely on the forums itself we have decided to introduce a forum_options table where custom options can be stored. Additionally, for this to work across all DBMS we support, we added a new method to the DBAL for the bitwise AND operator. Also moved the forum/topic feed template variable to the location where they belong to (forum and topic view) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9965 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -249,6 +249,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_last_poster_name varchar(255) DEFAULT '' NOT NULL,
|
||||
forum_last_poster_colour varchar(6) DEFAULT '' NOT NULL,
|
||||
forum_flags tinyint(4) DEFAULT '32' NOT NULL,
|
||||
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,
|
||||
enable_indexing tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
|
Reference in New Issue
Block a user