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

/**
* Implementation of hook_uninstall().
*/
function ed_uninstall() {
db_query('DROP TABLE {edi_classified_nodes}');
}

Comments

mcurry’s picture

Status: Active » Fixed

I committed the change to the Drupal-5 branch.

Should an uninstaller also delete the classified nodes from the node table? Sorry, I'm not up on uninstallers (yet).

thierry_gd’s picture

I assume it should (not have had time to go in detail in the module code)

Anonymous’s picture

Status: Fixed » Closed (fixed)