I fixed this by manually creating the table:
CREATE TABLE wpmu.wp_0_options (
option_id bigint(20) unsigned NOT NULL auto_increment,
option_name varchar(64) NOT NULL default ”,
option_value longtext NOT NULL,
autoload varchar(20) NOT NULL default ‘yes’,
PRIMARY KEY (option_id),
UNIQUE KEY option_name (option_name)
) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;