que erro é esse
Erro
consulta SQL:
CREATE TABLE `server_reports` (
`id` INT NOT NULL AUTO_INCREMENT ,
`world_id` TINYINT( 2 ) UNSIGNED NOT NULL DEFAULT 0,
`player_id` INT UNSIGNED NOT NULL DEFAULT 0,
`posx` INT NOT NULL DEFAULT 0,
`posy` INT NOT NULL DEFAULT 0,
`posz` INT NOT NULL DEFAULT 0,
`timestamp` BIGINT NOT NULL DEFAULT 0,
`report` TEXT NOT NULL ,
`reads` INT NOT NULL DEFAULT 0,
PRIMARY KEY ( `id` ) ,
KEY ( `world_id` ) ,
KEY ( `reads` ) ,
FOREIGN KEY ( `player_id` ) REFERENCES `players` ( `id` ) ON DELETE CASCADE ) ENGINE = InnoDB;
Mensagens do MySQL :
#1005 - Can't create table 'forgottenserver.server_reports' (errno: 150)