/[drupal]/contributions/modules/category/category.install
ViewVC logotype

Diff of /contributions/modules/category/category.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.22, Wed Aug 5 04:52:53 2009 UTC revision 1.23, Wed Aug 5 04:56:27 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: category.install,v 1.21 2009/05/31 10:21:06 jaza Exp $  // $Id: category.install,v 1.22 2009/08/05 04:52:53 jaza Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 559  function category_update_6003() { Line 559  function category_update_6003() {
559    db_create_table($ret, 'cache_category', $schema);    db_create_table($ret, 'cache_category', $schema);
560    return $ret;    return $ret;
561  }  }
562    
563    
564    /**
565     * Implementation of hook_uninstall().
566     */
567    function category_uninstall() {
568      db_query('DROP TABLE {category}');
569      db_query('DROP TABLE {category_hierarchy}');
570      db_query('DROP TABLE {category_node}');
571      db_query('DROP TABLE {category_relation}');
572      db_query('DROP TABLE {category_synonym}');
573      db_query('DROP TABLE {category_cont}');
574      db_query('DROP TABLE {category_cont_distant}');
575      db_query('DROP TABLE {category_cont_node_types}');
576    
577      variable_del('category_allow_nodetypes');
578      variable_del('category_base_nodetypes');
579      variable_del('category_distant_containers');
580    
581    }

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

  ViewVC Help
Powered by ViewVC 1.1.2