Code:
#
# Table structure for table `nuke_bbsearch_wordlist`
#
CREATE TABLE nuke_bbsearch_wordlist (
word_text varchar(50) binary NOT NULL default '',
word_id mediumint(8) unsigned NOT NULL auto_increment,
word_common tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (word_text),
KEY word_id (word_id)
) TYPE=MyISAM;
#
# Dumping data for table `nuke_bbsearch_wordlist`
#
That will create the wordlist table. You can simply paste that info in phpmyadmin.
mikem