Index: openacs-4/packages/workflow/www/doc/fall-2003-extensions.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/workflow/www/doc/fall-2003-extensions.html,v diff -u -r1.2 -r1.3 --- openacs-4/packages/workflow/www/doc/fall-2003-extensions.html 9 Dec 2003 09:59:45 -0000 1.2 +++ openacs-4/packages/workflow/www/doc/fall-2003-extensions.html 9 Jan 2004 15:47:53 -0000 1.3 @@ -126,14 +126,6 @@ ('per_role','per_member','per_user')) ); -create table workflow_cases( - ... - parent_enabled_action_id integer - constraint workflow_cases_parent_fk - references workflow_case_enabled_actions(enabled_action_id) - ... -); - create table workflow_case_enabled_actions( enabled_action_id integer constraint wf_case_enbl_act_case_id_pk @@ -160,6 +152,19 @@ constraint wf_case_ena_act_case_act_un primary key (case_id, action_id) ); + +create table workflow_case_child_cases( + case_id integer + constraint wf_case_child_cases_case_fk + references workflow_cases + constraint wf_case_child_cases_case_pk + primary key, + enabled_action_id integer + constraint wf_case_child_cases_en_act_fk + references workflow_case_enabled_actions + constraint wf_case_child_cases_en_act_nn + not null +);