Description de la table
Table contenant les mots indexés pour la recherche.
CREATE TABLE phpbb_search_wordlist ( word_id int(10) unsigned NOT NULL AUTO_INCREMENT, word_text varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', word_common tinyint(1) unsigned NOT NULL DEFAULT '0', word_count mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (word_id), UNIQUE KEY wrd_txt (word_text), KEY wrd_cnt (word_count) ) CHARSET=utf8 COLLATE=utf8_bin;