Here's the section that's getting the error, though the others are just like it.
#
Table structure for table affils
#
CREATE TABLE affils (
id tinyint(4) NOT NULL auto_increment,
name tinytext NOT NULL,
filename tinytext NOT NULL,
url tinytext NOT NULL,
in tinyint(4) NOT NULL default '0',
out tinyint(4) NOT NULL default '0',
description text NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY id (id),
KEY id_2 (id)
) TYPE=MyISAM COMMENT='this is the affiliates table';