corr_action_log
- Last UpdatedNov 20, 2024
- 1 minute read
Note: This table is currently not used.
The corr_action_log table identifies corrective actions taken for a particular downtime event.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
ent_id |
int32 |
N |
N |
Identifies the entity. |
|
event_time_utc |
tdatetime2 |
N |
N |
Identifies the event time, in UTC. |
|
action_id |
int32 |
N |
N |
Identify corrective action |
|
notes |
nvarchar(max) |
N |
Y |
Additional information about this particular corrective action. |
|
last_edit_comment |
notes |
N |
Y |
Reserved for internal use to indicate why this record was changed |
|
last_edit_by |
string40 |
N |
N |
Who last changed this record |
|
created_by |
string40 |
N |
N |
Who did the corrective action |
|
last_edit_at |
tdatetime |
N |
N |
When this record was last changed |
|
created_at_utc |
tdatetime |
N |
N |
When corrective action taken in UTC |
|
created_at_local |
tdatetime |
N |
N |
When corrective action taken in local time |
|
row_id |
ID 1 |
Y |
N |
Unique row identifier, for audit trail. |
FK from ent_id, event_time_utc to util_history. (Cascade delete)
FK from action_id to corr_action. (Cascade delete)