Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
---|---|---|---|---|---|---|---|---|---|---|---|
action_taken_guid | uuid | 2147483647 | uuid_generate_v4() |
|
|
System generated unique key for an action taken record. This key should never be exposed to users via any system utilizing the tables. |
|||||
complaint_identifier | varchar | 20 | √ | null |
|
|
Natural key for a complaint generated by webEOC. Format is YY-###### where the number portion of the sequence resets to 0 on the new year. Either a complaint_update_guid or a complaint_identifier must be present on the record. |
||||
complaint_update_guid | uuid | 2147483647 | √ | null |
|
|
System generated unique key for a COMPLAINT_UPDATE. This key should never be exposed to users via any system utilizing the tables. Either a complaint_update_guid or a complaint_identifier must be present on the record. |
||||
action_details_txt | text | 2147483647 | √ | null |
|
|
Text about who the call centre staff contacted and when |
||||
logged_by_txt | varchar | 250 | √ | null |
|
|
The name of the webEOC User that recorded the ACTION_TAKEN |
||||
action_utc_timestamp | timestamp | 29,6 | √ | null |
|
|
The date from webEOC that the ACTION_TAKEN was recorded. The timestamp is stored in UTC with no Offset. |
||||
create_user_id | varchar | 32 | null |
|
|
The id of the user that created the ACTION_TAKEN |
|||||
create_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the ACTION_TAKEN was created. The timestamp is stored in UTC with no Offset. |
|||||
update_user_id | varchar | 32 | null |
|
|
The id of the user that updated the ACTION_TAKEN |
|||||
update_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the ACTION_TAKEN was updated. The timestamp is stored in UTC with no Offset. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PK_action_taken_guid | Primary key | Asc | action_taken_guid |
Check Constraints
Constraint Name | Constraint |
---|---|
action_taken_check | (((complaint_identifier IS NOT NULL) OR (complaint_update_guid IS NOT NULL))) |