The case_deadline_event table stores information about case deadlines when the case is running.
The case_deadline_event table has the following structure:
TABLE case_deadline_event (
node_id INTEGER NOT NULL,
proc_id INTEGER NOT NULL,
casenum NUMERIC(20) NOT NULL,
dead_id VARCHAR(32) NOT NULL,
dead_name VARCHAR(32) NOT NULL,
event_name VARCHAR(32) NOT NULL,
dead_value VARCHAR(512) NOT NULL)
The case_deadline_event table contains one or more rows for each instance of each procedure definition on the system. Rows are added, updated, and deleted in the following situations.