• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

MySQL Problem add table

stanczyk

Scripter
Joined
Nov 24, 2009
Messages
293
Reaction score
2
Code:
CREATE TABLE `tile_store`
(
    `house_id` INT UNSIGNED NOT NULL,
    `world_id` TINYINT(4) UNSIGNED NOT NULL DEFAULT 0,
    `data` LONGBLOB NOT NULL,
    FOREIGN KEY (`house_id`) REFERENCES `houses` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB;

Why i can't add this table to my database, i have this community #1005 - Can't create table 'ots.tile_store' (errno: 150)
 
Back
Top