/[drupal]/contributions/modules/feedparser/feedaggregator_node.install
ViewVC logotype

Contents of /contributions/modules/feedparser/feedaggregator_node.install

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Nov 20 21:40:09 2006 UTC (3 years ago) by budda
Branch: MAIN
CVS Tags: DRUPAL-5--0-1-dev, HEAD
Branch point for: DRUPAL-5, DRUPAL-4-7
File MIME type: text/x-php
Moved from the module to it's own file.
1 <?php
2 // $Id:$
3
4 function feedaggregator_node_install() {
5 drupal_set_message('Installing feedaggregator node table');
6 switch ($GLOBALS['db_type']) {
7 case 'mysqli':
8 case 'mysql':
9 db_query("
10 CREATE TABLE IF NOT EXISTS {aggregator_node} (
11 iid INT(1) NOT NULL ,
12 nid INT( 10 ) NOT NULL ,
13 fid INT( 10 ) NOT NULL ,
14 link VARCHAR( 255 ) NOT NULL,
15 PRIMARY KEY (`iid`)
16 ) TYPE=MyISAM /*!40100 DEFAULT CHARACTER SET utf8 */;");
17 break;
18 }
19 }

  ViewVC Help
Powered by ViewVC 1.1.2