/[drupal]/contributions/modules/g2/g2.mysql
ViewVC logotype

Contents of /contributions/modules/g2/g2.mysql

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


Revision 1.4 - (show annotations) (download)
Sun May 20 15:40:34 2007 UTC (2 years, 6 months ago) by fgm
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, DRUPAL-5--1-0, HEAD
Branch point for: DRUPAL-5
Changes since 1.3: +4 -3 lines
Try to make "HEAD" versions from the latest versions in the 4.7 Branch
1 #-------------------------------------------------
2 # New table for the G2 glossary module
3 # Currently defined for MySQL 4.1.x
4 # $Id: g2.mysql,v 1.3.2.1 2006/07/29 19:44:47 fgm Exp $
5 #-------------------------------------------------
6
7 CREATE TABLE `g2_node`
8 (
9 `nid` INT( 11 ) DEFAULT '0' NOT NULL ,
10 `period` VARCHAR( 50 ) ,
11 `complement` MEDIUMTEXT,
12 `origin` MEDIUMTEXT,
13 PRIMARY KEY ( `nid` )
14 ) COMMENT = 'Extensions to node for g2 module';
15
16 CREATE TABLE `g2_referer` (
17 `nid` int(10) unsigned NOT NULL default '0',
18 `referer` varchar(128) NOT NULL default '',
19 `incoming` int(10) NOT NULL default '0',
20 PRIMARY KEY (`nid`,`referer`),
21 KEY `referer` (`referer`)
22 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='G2 referer stats for link exchange';
23

  ViewVC Help
Powered by ViewVC 1.1.2