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

Diff of /contributions/modules/pcp/pcp.install

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

revision 1.1.4.1, Thu Oct 9 21:49:20 2008 UTC revision 1.1.4.2, Fri Oct 17 20:53:39 2008 UTC
# Line 0  Line 1 
1    <?php
2    // $Id$
3    
4    /**
5     * @file
6     * Install file for the profile.module
7     */
8    
9    
10    /**
11    * Implementation of hook_install().
12    */
13    function pcp_install() {
14      drupal_install_schema('pcp');
15    }
16    
17    /**
18     * Implementation of hook_schema()
19     */
20    function pcp_schema() {
21      $schema['profile_pcp'] = array(
22        'fields' => array(
23          'fid' => array('type' => 'int', 'not null' => TRUE),
24          ),
25        );
26      return $schema;
27    }
28    
29    function pcp_uninstall() {
30      drupal_uninstall_schema('pcp');
31    }

Legend:
Removed from v.1.1.4.1  
changed lines
  Added in v.1.1.4.2

  ViewVC Help
Powered by ViewVC 1.1.2