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

no such table: player_inboxitems

ganzory

Twiffysoft Support
Joined
Sep 1, 2012
Messages
171
Reaction score
7
Location
USA
Untitled.jpg


What ido on this error?
thx,:$
 
Last edited:
SQL:
CREATE TABLE IF NOT EXISTS `player_inboxitems` 
(
    `player_id` INTEGER NOT NULL, 
    `sid` INTEGER NOT NULL, 
    `pid` INTEGER NOT NULL DEFAULT 0, 
    `itemtype` SMALLINT NOT NULL, 
    `count` SMALLINT NOT NULL DEFAULT 0, 
    `attributes` BLOB NOT NULL, 
    UNIQUE (`player_id`,`sid`), 
    PRIMARY KEY (`player_id`), 
    FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
);
 
should i make it to you?.. you can make it :) just copy and sql table and make it

- - - Updated - - -

Ninja already made it...
 
Back
Top Bottom