### Eclipse Workspace Patch 1.0 #P drupal_5 Index: sites/all/modules/nodefamily/nodefamily.install =================================================================== --- sites/all/modules/nodefamily/nodefamily.install (revision 844) +++ sites/all/modules/nodefamily/nodefamily.install (working copy) @@ -19,6 +19,13 @@ )"); default: break; + case 'mssql': + db_query("CREATE TABLE {nodefamily} ( + parent_nid int NOT NULL default 0, + child_nid int NOT NULL default 0, + PRIMARY KEY(parent_nid,child_nid) + );"); + break; } // Set the module weight to -2, so that the hook_form_alter() implementation // get's called before nodeprofile's implementation