Adding the following lines at the end of .install file will allow the module to be properly uninstalled

/**
* Implementation of hook_uninstall().
*/
function buddylist_uninstall() {
db_query('DROP TABLE {buddylist}');
db_query('DROP TABLE {buddylist_buddy_group}');
db_query('DROP TABLE {buddylist_groups}');
db_query('DROP TABLE {buddylist_pending_requests}');
}

CommentFileSizeAuthor
#1 buddylist.install-0.patch684 bytesawong

Comments

awong’s picture

Status: Active » Needs review
StatusFileSize
new684 bytes

yup, uninstall function is missing in the "HEAD" version. Here is the patch that include the code above to the .install file