XF 1.2 Error when trying to require prefix

That's still not the entire table but from what I can see, those four columns related to that add-on now look OK.

What happens now when you try to require a prefix.
 
That's still not the entire table but from what I can see, those four columns related to that add-on now look OK.

Whatever it is you think I should be seeing/getting I dont. Im not seeing what I dont understand! I see those you are refering to but thats it do I delete them ? If so, How?
 
Run this:
Code:
ALTER TABLE xf_forum ADD require_prefix TINYINT UNSIGNED NOT NULL DEFAULT '0';
Presumably when you uninstalled the add-on, it re-removed the column (hence the importance of prefixing tables/columns).
 
Run this:
Code:
ALTER TABLE xf_forum ADD require_prefix TINYINT UNSIGNED NOT NULL DEFAULT '0';
Presumably when you uninstalled the add-on, it re-removed the column (hence the importance of prefixing tables/columns).
I think that did it, no more error when I require prefix, Thanks for your help Mike and everyone else that chipped in, cheers.
 
Top Bottom