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

Contents of /contributions/modules/pr/pr.mysql

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


Revision 1.1 - (show annotations) (download)
Thu Jan 5 03:52:51 2006 UTC (3 years, 10 months ago) by daryl
Branch: MAIN
CVS Tags: HEAD
Adding pr module to repository.
1 CREATE TABLE `pr_aggregator` (
2 `pid` int(10) unsigned zerofill NOT NULL auto_increment,
3 `iid` int(10) unsigned zerofill NOT NULL default '0000000000',
4 `responded_to` tinyint(1) default '0',
5 `rating` int(10) default NULL,
6 PRIMARY KEY (`pid`)
7 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
8
9 CREATE TABLE `pr_ratings` (
10 `rid` int(10) unsigned zerofill NOT NULL auto_increment,
11 `iid` int(10) unsigned zerofill default NULL,
12 `uid` int(10) unsigned zerofill NOT NULL default '0000000000',
13 PRIMARY KEY (`rid`)
14 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

  ViewVC Help
Powered by ViewVC 1.1.2