--- db/prgsrc/mkRS.pl 2005/07/05 20:24:17 1.6 +++ db/prgsrc/mkRS.pl 2005/07/05 21:07:04 1.7 @@ -64,9 +64,8 @@ print "Creating word2question table...\n KEY idkey (id), word INT UNSIGNED NOT NULL, KEY wordkey (word), - questions MEDIUMBLOB, - INDEX(word) - )" + questions MEDIUMBLOB + ) type MyISAM" ) or die "Can't create WORD2QUESTION table: $!\n"; @@ -80,7 +79,7 @@ print "Creating nests table...\n"; KEY w1key (w1), w2 INT UNSIGNED NOT NULL, KEY w2key (w2) - )") + ) type MyISAM") or die "Can't create NESTS table: $!\n"; @@ -97,7 +96,7 @@ mydo("CREATE TABLE nf ( KEY wordkey (word), flag CHAR(5), number INT UNSIGNED - )") or die "Can't create NF table: $!\n"; + ) type MyISAM") or die "Can't create NF table: $!\n"; mydo("UPDATE Questions SET ProcessedBySearch=NULL");