This table holds the relationships between appeasements and
justifications.
Column Descriptions:
Name |
Type |
Description |
APPEASEMENT_ID |
BIGINT NOT NULL |
The unique identifier of the appeasemen. |
ORDJUST_ID |
INTEGER NOT NULL |
The unique identifier of the justification. |
OPTCOUNTER |
SMALLINT |
The optimistic concurrency control counter for the table. Every time
there is an update to the table, the counter is incremented. |
Indexes:
Name |
Column Names |
Type |
P_APPSJUSTREL |
APPEASEMENT_ID + ORDJUST_ID |
Primary Key |
Constrained By Parent Tables:
Constraint |
Columns |
Parent Table |
Parent Columns |
Type |
F_APPSJUSTREL_ORDJUST_ID |
ORDJUST_ID |
ORDJUST |
ORDJUST_ID |
Cascade |
F_APPSJUSTREL_APPEASEMENT_ID |
APPEASEMENT_ID |
APPEASEMENT |
APPEASEMENT_ID |
Cascade |