whats wrong with this un/install code?
i cant seem to figure out why this doesnt work..... but i keep getting the error that there is an error in my sql syntax....
If i remove IF EXISTS then i get the error that the column doesnt exist (because it doesnt yet)
how do i fix this.... ive read through some sql stuff but nothing i tried fixed it.
INSTALL CODE
$db->query_write("ALTER TABLE user ADD timeonboard INT(10) NOT NULL AFTER lastactivity") ;
UNINSTALL CODE
$db->query_write("ALTER TABLE user DROP IF EXISTS timeonboard");
|