summaryrefslogtreecommitdiff
path: root/modules/comment/comment.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment/comment.install')
-rw-r--r--modules/comment/comment.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/comment/comment.install b/modules/comment/comment.install
index b7195baba..e0c9d622b 100644
--- a/modules/comment/comment.install
+++ b/modules/comment/comment.install
@@ -2,6 +2,22 @@
// $Id$
/**
+ * Implementation of hook_install().
+ */
+function comment_install() {
+ // Create tables.
+ drupal_install_schema('comment');
+}
+
+/**
+ * Implementation of hook_uninstall().
+ */
+function comment_uninstall() {
+ // Remove tables.
+ drupal_uninstall_schema('comment');
+}
+
+/**
* Implementation of hook_enable().
*/
function comment_enable() {