/[drupal]/contributions/modules/ecommerce/ec_anon/ec_anon.install
ViewVC logotype

Diff of /contributions/modules/ecommerce/ec_anon/ec_anon.install

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

revision 1.10.2.19 by gordon, Sat Nov 14 13:22:37 2009 UTC revision 1.10.2.20 by gordon, Sun Nov 15 00:03:25 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: ec_anon.install,v 1.10.2.18 2009/11/09 11:44:08 gordon Exp $  // $Id: ec_anon.install,v 1.10.2.19 2009/11/14 13:22:37 gordon Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 152  function ec_anon_update_6404() { Line 152  function ec_anon_update_6404() {
152    
153    return $ret;    return $ret;
154  }  }
155    
156    /**
157     * Drop the ec_anon table as it is not required any more.
158     */
159    function ec_anon_update_6406() {
160      $ret = array();
161    
162      if (db_table_exists('ec_anon')) {
163        db_drop_table($ret, 'ec_anon');
164      }
165    
166      return $ret;
167    }

Legend:
Removed from v.1.10.2.19  
changed lines
  Added in v.1.10.2.20

  ViewVC Help
Powered by ViewVC 1.1.3