[Help] Plus emu error wont start

MrPiggyBank

New Member
Dec 18, 2017
13
1
Hi, I'm new to the whole making a retro, and I came across this error when i was setting up my emu. Please could someone help me out?
I'm assuming it's something todo with the a table in the database somewhere, but I don't know where or if theres a way for me to find out. Thanks.


rHzKH
 

Liam

discord.gg/hivehub
Staff member
FindRetros Moderator
Apr 10, 2013
1,184
714
Column `diamonds` does not belong to table `subscriptions`.

It says what the error is and where it's from pretty clear, which should have given you an idea :p

try deleting your database and run this as a query then reimport the sql

Code:
SET @@global.sql_mode= '';

FYI if he ran the SQL fine with no errors then deleting the database and doing the same thing wouldn't help solve this.
 

Marko97

M97 Project based Plus EMU
Aug 7, 2013
99
45
In order to fix this issue you need to run this SQL query:
Code:
ALTER TABLE `subscriptions` ADD `diamonds` INT(11) NOT NULL;
 
Last edited:

Users who are viewing this thread

Top