? bestrply-uninstall.patch
Index: bestreply.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/bestreply/bestreply.install,v
retrieving revision 1.1.6.1
diff -u -p -r1.1.6.1 bestreply.install
--- bestreply.install	9 Mar 2009 10:10:45 -0000	1.1.6.1
+++ bestreply.install	18 Apr 2009 00:04:03 -0000
@@ -7,6 +7,9 @@
  */
 
 
+/**
+ * Implementation of hook_install().
+ */
 function bestreply_install() {
   // Create tables.
   drupal_install_schema('bestreply');
@@ -27,4 +30,11 @@ function bestreply_schema() {
     'primary key' => array('nid'),
   );
   return $schema;
-}
\ No newline at end of file
+}
+
+/**
+ * Implementation of hook_uninstall().
+ */
+function bestreply_uninstall() {
+  drupal_uninstall_module('bestreply');
+}
