Mysql es_extended error in console

Hey so im wondering how i can fix these errors i have been trying for days now but haven’t founded yet. On the picture is where you can find the error.
Thanks if you try to help me!

Delete user_inventory table from database.
Select database, then select SQL and insert this:
CREATE TABLE user_accounts (
id int(11) NOT NULL AUTO_INCREMENT,
identifier varchar(255) NOT NULL,
name varchar(255) NOT NULL,
money double NOT NULL DEFAULT ‘0’,
PRIMARY KEY (id)
);

But why do i need to delete user_inventory and create table user_accounts?

I think you need the user_inventory sql .

Ouh, my bad, yes.
Delete user_inventory and execute this sql:
CREATE TABLE user_inventory (
id int(11) NOT NULL AUTO_INCREMENT,
identifier varchar(255) NOT NULL,
item varchar(255) NOT NULL,
count int(11) NOT NULL,
PRIMARY KEY (id)
);
And error must be gone.

1 Like

Yes thanks it worked thanks bro! you saved me the spam with red errors haha

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.