From 1e69b15ee895412aebbe70c1aa02ea26c97e86c0 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sun, 29 Oct 2006 19:36:26 +1300 Subject: [PATCH] Doh. The 'Is a member of group' relationship should target a group. --- dba/base-data.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dba/base-data.sql b/dba/base-data.sql index f255b23d..046a3737 100644 --- a/dba/base-data.sql +++ b/dba/base-data.sql @@ -24,7 +24,7 @@ INSERT INTO relationship_type ( rt_id, rt_name, rt_isgroup, confers, prefix_matc VALUES( 2, 'Is Assisted by', FALSE, 'RW', '' ); INSERT INTO relationship_type ( rt_id, rt_name, rt_isgroup, confers, prefix_match ) - VALUES( 3, 'Is a member of group', FALSE, 'R', '' ); + VALUES( 3, 'Is a member of group', TRUE, 'R', '' ); INSERT INTO relationship_type ( rt_id, rt_name, rt_isgroup, confers, prefix_match ) VALUES( 4, 'Administers Resource', FALSE, 'RW', '' );