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

Diff of /contributions/modules/xslt_book/xslt_book.install

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

revision 1.1.2.1, Wed Jan 14 14:34:29 2009 UTC revision 1.1.2.2, Thu Jan 22 00:27:32 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
 // $Id: xslt_book.install,v 1.1 2008/07/07 13:42:08 tmcw Exp $  
2    
3  /**  /**
4   * Implementation of hook_schema().   * Implementation of hook_schema().
# Line 38  function xslt_book_schema() { Line 37  function xslt_book_schema() {
37          'type' => 'text',          'type' => 'text',
38          'not null' => FALSE,          'not null' => FALSE,
39        ),        ),
40              'serialized' => array(
41            'description' => t('TODO'),
42            'type' => 'int',
43            'not null' => TRUE,
44            'default' => 0,
45          ),
46      ),      ),
47      'indexes' => array(      'indexes' => array(
48        'expire' => array('expire'),        'expire' => array('expire'),
# Line 52  function xslt_book_install() { Line 57  function xslt_book_install() {
57    // Create tables.    // Create tables.
58    drupal_install_schema('xslt_book');    drupal_install_schema('xslt_book');
59  }  }
60    function xslt_book_uninstall() {
61      drupal_uninstall_schema('xslt_book');
62    }

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

  ViewVC Help
Powered by ViewVC 1.1.2