Active
Project:
Node Relativity
Version:
5.x-2.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Nov 2008 at 17:42 UTC
Updated:
20 Nov 2008 at 17:42 UTC
Please add this to relativity.install
case 'pgsql':
db_query("CREATE TABLE {relativity} (
nid INTEGER DEFAULT 0 NOT NULL,
parent_nid INTEGER DEFAULT 0 NOT NULL,
PRIMARY KEY(nid, parent_nid))");
db_query("CREATE TABLE {relativity_query} (
nid INTEGER DEFAULT 0 NOT NULL,
target_nid INTEGER,
follow_parents INTEGER,
follow_children INTEGER,
recursion_depth INTEGER,
unique_types INTEGER,
max_results INTEGER,
options TEXT,
search_algorithm VARCHAR(20) DEFAULT 'dfs',
search_types TEXT,
end_pts TEXT,
avoid_pts TEXT,
PRIMARY KEY(nid)");