Solutions
-
Alan Vandre's post in (Resolvido)Erro ao salvar Char was marked as the answerSim, executei, e ainda aparece o erro...
Resolvi o problema, executei o comando abaixo.
DROP TABLE IF EXISTS player_inboxitems;
CREATE TABLE player_inboxitems (
player_id INT( 11 ) NOT NULL,
sid INT( 11 ) NOT NULL,
pid INT( 11 ) NOT NULL
DEFAULT ( 0 ),
itemtype SMALLINT( 6 ) NOT NULL,
count SMALLINT( 5 ) NOT NULL
DEFAULT ( 0 ),
attributes BLOB NOT NULL
);