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

Contents of /contributions/modules/actionfeed/actionfeed.mysql

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


Revision 1.2 - (show annotations) (download)
Sat Sep 17 11:38:49 2005 UTC (4 years, 2 months ago) by jareyero
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +16 -0 lines
New ActionFeed module
1 # Db schema for actionfeeds.module
2
3 CREATE TABLE `actionfeed` (
4 `nid` int(10) NOT NULL ,
5 `sender_email` varchar(128) NOT NULL default '',
6 `homepage` varchar(255) NOT NULL default '',
7 PRIMARY KEY (`nid`)
8 ) TYPE=MyISAM;
9
10 CREATE TABLE `actionfeed_node` (
11 `nid` int(10) unsigned NOT NULL default '0',
12 `ppnid` int(10) unsigned NOT NULL default '0',
13 PRIMARY KEY (`ppnid`,`nid`),
14 KEY `nid` (`nid`),
15 KEY `tid` (`ppnid`)
16 ) TYPE=MyISAM;

  ViewVC Help
Powered by ViewVC 1.1.2