cert_grade_link
- Last UpdatedNov 20, 2024
- 1 minute read
The cert_grade_link table allows many-to-many relationship between grades and certifications, to control who may alter grades.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
cert_name |
string40 |
Y |
N |
Unique name for certification |
|
from_item_grade_cd |
int32 |
Y |
N |
Existing grade |
|
to_item_grade_cd |
int32 |
Y |
N |
Grade to be changed to |
|
cert_level |
int32 |
N |
N |
Certification level required to change grade, 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 |
N |
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 from_item_grade_cd to item_grade. (Cascade delete)
FK from to_item_grade_cd to item_grade. (Cascade delete implemented via trigger)