cert_oper_link
- Last UpdatedNov 20, 2024
- 1 minute read
The cert_oper_link table allows many-to-many relationship between defined operations and certifications required to run the operation. If a particular certification is not required to perform a certain operation, there is no record in this table, as opposed to there being a record with a certification level of 0.
We assume that the same certification level will apply irrespective of alternate routes or splits.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
cert_name |
string40 |
Y |
N |
Unique name for certification |
|
process_id |
string40 |
Y |
N |
Identify operation |
|
oper_id |
string40 |
Y |
N |
|
|
cert_level |
int32 |
N |
N |
Certification level required to work on this operation, minimum 1, default 1 |
|
last_edit_comment |
string254 |
N |
Y |
Reserved for internal use to indicate why this record was changed |
|
last_edit_by |
string40 |
N |
Y |
Who last changed this record |
|
last_edit_at |
tdatetime |
N |
N |
When this record was last changed |
|
row_id |
ID 1 |
N |
N |
Unique row identifier, for audit trail. |
FK from cert_name to cert_type. (Cascade delete)
FK from process_id, oper_id to oper. (Cascade delete)