Thanks for the quick support,
Does anything change knowing that I already dropped a table as suggested by DJ ?
Appreciate the promptness in response
Quote:
Originally Posted by grandeur_69
i'm not entirely sure why the uninstall did not drop the column receivebulletin, as the uninstall info is pretty straight forward and drops the 3 columns that are added.
My guess might be that you do not have permissions to use the SQL query "show columns", as both the install code and uninstall code check to see if the columns are there before installing / uninstalling.
I may have to figure out a way to check that "show columns" actually returns the proper results before running these checks.
to manually uninstall:
Code:
ALTER TABLE user DROP receivebulletin;
ALTER TABLE user DROP INDEX receivebulletin;
ALTER TABLE user DROP receivebulletin_type;
|