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

Contents of /contributions/modules/recommended_nodes/recommended_nodes.install

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


Revision 1.2 - (show annotations) (download) (as text)
Sat May 6 00:19:14 2006 UTC (3 years, 6 months ago) by drumm
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5
Changes since 1.1: +7 -1 lines
File MIME type: text/x-php
Feature-completeness.
1 <?php
2 // $Id: recommended_nodes.install,v 1.1 2006/05/04 20:20:09 drumm Exp $
3
4 function recommended_nodes_install() {
5 switch ($GLOBALS['db_type']) {
6 case 'mysql':
7 db_query('CREATE TABLE {recommended_nodes_recommendations} (
8 nid int(10) unsigned NOT NULL,
9 uid int(10) unsigned NOT NULL,
10 PRIMARY KEY (nid, uid)
11 )');
12 db_query('CREATE TABLE {recommended_nodes_node} (
13 nid int(10) unsigned NOT NULL,
14 score decimal(6,3) unsigned NOT NULL,
15 PRIMARY KEY (nid),
16 INDEX (score)
17 )');
18 }
19 }

  ViewVC Help
Powered by ViewVC 1.1.2