|
Wenn ich den Login Server (Database) in Navicat einfüge kommt :
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRUE,
`access_level` tinyint(3) NOT NULL default '0',
`membership` tinyin' at line 5
[Err] CREATE TABLE `account_data` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(45) NOT NULL,
`password` varchar(65) NOT NULL,
`activated` boolean NOT NULL DEFAULT TRUE,
`access_level` tinyint(3) NOT NULL default '0',
`membership` tinyint(3) NOT NULL default '0',
`last_server` tinyint(3) NOT NULL default '-1',
`last_ip` varchar(20) default NULL,
`ip_force` varchar(20) default NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
[Msg] Finished - Unsuccessfully
--------------------------------------------------
Bitte um Hilfe <.<
|