aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-10-21 13:05:15 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-10-21 13:05:15 +0000
commitdf24e3c8e0da6dc9f4a1ad50e58b8afa3a4dde3c (patch)
tree2a6502b72644034f333a5246461cebe0b914b632 /phpBB/install
parent8d3cc998483e7f6bd57d1ad8e970c69927b7fd20 (diff)
downloadforums-df24e3c8e0da6dc9f4a1ad50e58b8afa3a4dde3c.tar
forums-df24e3c8e0da6dc9f4a1ad50e58b8afa3a4dde3c.tar.gz
forums-df24e3c8e0da6dc9f4a1ad50e58b8afa3a4dde3c.tar.bz2
forums-df24e3c8e0da6dc9f4a1ad50e58b8afa3a4dde3c.tar.xz
forums-df24e3c8e0da6dc9f4a1ad50e58b8afa3a4dde3c.zip
Enable/disable fulltext indexing of a given forum
git-svn-id: file:///svn/phpbb/trunk@4620 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 7ace696bdd..370d47c790 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -204,6 +204,7 @@ CREATE TABLE phpbb_forums (
forum_last_poster_name varchar(30),
forum_flags tinyint(4) DEFAULT '0' NOT NULL,
display_on_index tinyint(1) DEFAULT '1' NOT NULL,
+ enable_indexing tinyint(1) DEFAULT '1' NOT NULL,
enable_icons tinyint(1) DEFAULT '1' NOT NULL,
enable_prune tinyint(1) DEFAULT '0' NOT NULL,
prune_next int(11) UNSIGNED,