Copyright © Cloud Software Group, Inc. All rights reserved. |
The status table holds the current status of each step of each case on the system.TABLE status (
node_id INTEGER NOT NULL,
proc_id INTEGER NOT NULL,
casenum NUMERIC(20) NOT NULL,
step_num INTEGER NOT NULL,
step_status INTEGER NOT NULL)
This key enforces the DELETE CASCADE referential action.
The status table contains one row for each step of each case (open or closed) on the system. Rows are added, updated and deleted in the following situations.
Copyright © Cloud Software Group, Inc. All rights reserved. |