Quote:
Originally Posted by stangger5
Still wont let you uninstall:
Invalid SQL:
ALTER TABLE user DROP 'casino_cash';
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''casino_cash'' at line 1
Error Number : 1064
|
old version of that line, did you update first then try and uninstall? If not try that as that line in the uninstall code should be changed, if not you can manually change the uninstall code for the product, first line to:
Code:
$query = "ALTER TABLE ". TABLE_PREFIX . "user DROP COLUMN 'casino_cash'";
basically adding "COLUMN" in there.