function comment_upload_uninstall in Comment Upload 6
Implementation of hook_uninstall().
File
- ./
comment_upload.install, line 23 - The install file that defines the tables in use by comment_upload.
Code
function comment_upload_uninstall() {
drupal_uninstall_schema('comment_upload');
db_query("DELETE FROM {variable} WHERE name LIKE 'comment_upload_%'");
}