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

Contents of /contributions/modules/relativity/relativity.mysql

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


Revision 1.4 - (show annotations) (download)
Fri Apr 28 15:35:06 2006 UTC (3 years, 7 months ago) by darius
Branch: MAIN
CVS Tags: DRUPAL-5--2-4, DRUPAL-5--2-5, DRUPAL-5--2-2, DRUPAL-5--2-3, DRUPAL-5--2-0, DRUPAL-5--2-1, DRUPAL-4-7--2-2, DRUPAL-4-7--2-0, HEAD
Branch point for: DRUPAL-5, DRUPAL-5--2, DRUPAL-4-7--2, DRUPAL-4-7, DRUPAL-6--1
Changes since 1.3: +23 -23 lines
Minor fixes - add .install file, remove file end php tag
1 CREATE TABLE relativity (
2 nid int(10) unsigned NOT NULL default '0',
3 parent_nid int(10) unsigned NOT NULL default '0',
4 KEY nid (nid),
5 KEY parent_nid (nid)
6 ) TYPE=MyISAM /*!40100 DEFAULT CHARACTER SET utf8 */;
7
8 CREATE TABLE relativity_query (
9 nid int(10) unsigned NOT NULL default '0',
10 target_nid int(10) unsigned,
11 follow_parents int(10) unsigned,
12 follow_children int(10) unsigned,
13 recursion_depth int(10) unsigned,
14 unique_types int(10) unsigned,
15 max_results int(10) unsigned,
16 options longtext,
17 search_algorithm varchar(20) default 'dfs',
18 search_types longtext,
19 end_pts longtext,
20 avoid_pts longtext,
21 KEY nid (nid)
22 ) TYPE=MyISAM /*!40100 DEFAULT CHARACTER SET utf8 */;
23

  ViewVC Help
Powered by ViewVC 1.1.2