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