aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/sqlite_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/schemas/sqlite_schema.sql')
-rw-r--r--phpBB/install/schemas/sqlite_schema.sql5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/install/schemas/sqlite_schema.sql b/phpBB/install/schemas/sqlite_schema.sql
index 04394f2d4a..74ac458057 100644
--- a/phpBB/install/schemas/sqlite_schema.sql
+++ b/phpBB/install/schemas/sqlite_schema.sql
@@ -621,9 +621,8 @@ CREATE TABLE phpbb_search_results (
# Table: phpbb_search_wordlist
CREATE TABLE phpbb_search_wordlist (
word_text varchar(252) NOT NULL DEFAULT '',
- word_id mediumint(8) NOT NULL,
- word_common tinyint(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (word_text)
+ word_id INTEGER PRIMARY KEY NOT NULL,
+ word_common tinyint(1) NOT NULL DEFAULT '0'
);
CREATE INDEX phpbb_search_wordlist_word_id on phpbb_search_wordlist (word_id);