Index: term_display.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/term_display/term_display.install,v
retrieving revision 1.3
diff -U3 -r1.3 term_display.install
--- term_display.install  7 Sep 2008 14:45:18 -0000 1.3
+++ term_display.install  15 Mar 2009 09:01:06 -0000
@@ -1,6 +1,7 @@
 <?php
 // $Id: term_display.install,v 1.3 2008/09/07 14:45:18 nedjo Exp $
 
+
 /**
  * Implementation of hook_schema().
  */
@@ -35,10 +36,20 @@
   return $schema;
 }
 
+
 /**
  * Implementation of hook_install().
  */
 function term_display_install() {
-  // Create tables.
+  // Create table.
   drupal_install_schema('term_display');
 }
+
+
+/**
+ * Implementation of hook_uninstall().
+ */
+function term_display_uninstall() {
+  // Remove table.
+  drupal_uninstall_schema('term_display');
+}
