• 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!

Linux Missing tile_store table

Vrotz

Member
Joined
Apr 7, 2011
Messages
1,071
Reaction score
7
Location
Brazil
mysql_real_query(): SELECT `house_id`, `data` FROM `tile_store` WHERE `world_id` = 0 - MYSQL ERROR: Table 'enforced.tile_store' doesn't exist (1146)

???
 
Last edited by a moderator:
Query:

SQL:
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;

By the way: this is the last thread title that I edit for you, next time your post will be deleted without any notification.
 
Ahh, excuse for my error. In the near one Im going to specify, was with a lot sleep when I placed.. kkkk

Code:
#1005 - Can't create table 'enforced.tile_store' (errno: 150)
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;
 
Last edited:
Back
Top