Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
---|---|---|---|---|---|---|---|---|---|---|---|
case_note_guid | uuid | 2147483647 | case_management.uuid_generate_v4() |
|
|
System generated unique key for a case note. |
|||||
case_file_guid | uuid | 2147483647 | null |
|
|
System generated unique key for a case. This key should never be exposed to users via any system utilizing the tables. |
|||||
case_note | text | 2147483647 | null |
|
|
The textual content or description of the note. |
|||||
active_ind | bool | 1 | true |
|
|
Indicates whether the note is active (true) or inactive (false). |
|||||
create_user_id | varchar | 32 | null |
|
|
The identifier (e.g., username) of the user who created the entry. |
|||||
create_utc_timestamp | timestamp | 29,6 | null |
|
|
The date and time (UTC) when the entry was created. |
|||||
update_user_id | varchar | 32 | √ | null |
|
|
The identifier (e.g., username) of the user who last updated the entry. |
||||
update_utc_timestamp | timestamp | 29,6 | √ | null |
|
|
The date and time (UTC) when the entry was last updated. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PK_case_note_guid | Primary key | Asc | case_note_guid |