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

Diff of /contributions/modules/procon/procon.install

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

revision 1.1.2.2, Sun Aug 12 14:34:54 2007 UTC revision 1.1.2.3, Tue Aug 28 20:17:37 2007 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: procon.install,v 1.1.2.1 2007/07/26 20:38:53 fajerstarter Exp $  // $Id: procon.install,v 1.1.2.2 2007/08/12 14:34:54 fajerstarter Exp $
3    
4  /**  /**
5   * Implementation of hook_install().   * Implementation of hook_install().
# Line 9  function procon_install() { Line 9  function procon_install() {
9      case 'mysql':      case 'mysql':
10      case 'mysqli':      case 'mysqli':
11        db_query("CREATE TABLE {procon} (        db_query("CREATE TABLE {procon} (
12          nid int(10) unsigned NOT NULL default '0',          nid int unsigned NOT NULL default '0',
13          parent_nid int(10) unsigned NOT NULL default '0',          parent_nid int unsigned NOT NULL default '0',
14          type tinyint(1) unsigned NOT NULL default '0',          type tinyint(1) unsigned NOT NULL default '0',
15          status tinyint(1) unsigned NOT NULL default '0',          status tinyint(1) unsigned NOT NULL default '0',
16          PRIMARY KEY (nid),          PRIMARY KEY (nid),

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

  ViewVC Help
Powered by ViewVC 1.1.2