i have same error.
output(SHOW CREATE TABLE qa_users):
qa_users, CREATE TABLE `qa_users` (
`userid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created` datetime NOT NULL,
`createip` int(10) unsigned NOT NULL,
`email` varchar(80) NOT NULL,
`handle` varchar(20) NOT NULL,
`avatarblobid` bigint(20) unsigned DEFAULT NULL,
`avatarwidth` smallint(5) unsigned DEFAULT NULL,
`avatarheight` smallint(5) unsigned DEFAULT NULL,
`passsalt` binary(16) DEFAULT NULL,
`passcheck` binary(20) DEFAULT NULL,
`level` tinyint(3) unsigned NOT NULL,
`loggedin` datetime NOT NULL,
`loginip` int(10) unsigned NOT NULL,
`written` datetime DEFAULT NULL,
`writeip` int(10) unsigned DEFAULT NULL,
`emailcode` char(8) CHARACTER SET ascii NOT NULL DEFAULT '',
`sessioncode` char(8) CHARACTER SET ascii NOT NULL DEFAULT '',
`sessionsource` varchar(16) CHARACTER SET ascii DEFAULT '',
`flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`userid`),
KEY `email` (`email`),
KEY `handle` (`handle`),
KEY `level` (`level`)
) ENGINE=MyISAM AUTO_INCREMENT=96 DEFAULT CHARSET=utf8