diff options
Diffstat (limited to 'modules/forum/forum.install')
-rw-r--r-- | modules/forum/forum.install | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/forum/forum.install b/modules/forum/forum.install index 6ad9ee9b7..c42490e2e 100644 --- a/modules/forum/forum.install +++ b/modules/forum/forum.install @@ -10,8 +10,6 @@ * Implement hook_install(). */ function forum_install() { - // Create tables. - drupal_install_schema('forum'); // Set the weight of the forum.module to 1 so it is loaded after the taxonomy.module. db_update('system') ->fields(array('weight' => 1)) @@ -61,7 +59,6 @@ function forum_uninstall() { $vid = variable_get('forum_nav_vocabulary', 0); taxonomy_vocabulary_delete($vid); - drupal_uninstall_schema('forum'); variable_del('forum_containers'); variable_del('forum_nav_vocabulary'); variable_del('forum_hot_topic'); |