Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
---|---|---|---|---|---|---|---|---|---|---|---|
drug_administered_guid | uuid | 2147483647 | case_management.uuid_generate_v4() |
|
|
System generated unique key for an drug that was administered to an animal. This key should never be exposed to users via any system utilizing the tables. |
|||||
wildlife_guid | uuid | 2147483647 | null |
|
|
System generated unique key for an animal. This key should never be exposed to users via any system utilizing the tables. |
|||||
drug_code | varchar | 10 | null |
|
|
A human readable code used to identify a drug type. |
|||||
drug_method_code | varchar | 10 | null |
|
|
A human readable code used to identify a drug injection method type. |
|||||
drug_remaining_outcome_code | varchar | 10 | √ | null |
|
|
A human readable code used to identify a remaining drug outcome type. |
||||
vial_number | varchar | 50 | null |
|
|
A vial number that relates to a seperate drug inventory system. |
|||||
drug_used_amount | varchar | 50 | null |
|
|
The amount of drug used |
|||||
create_user_id | varchar | 32 | null |
|
|
The id of the user that created the drug_administered record. |
|||||
create_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the drug_administered record 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 drug_administered record. |
|||||
update_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the drug_administered record was updated. The timestamp is stored in UTC with no Offset. |
|||||
active_ind | bool | 1 | √ | null |
|
|
A boolean indicator to determine if the drug_administered record is active. |
||||
additional_comments_text | text | 2147483647 | √ | null |
|
|
Includes comments on immobilization outcomes, any adverse reactions, and drug storage or discarding. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PK_drug_administered_guid | Primary key | Asc | drug_administered_guid |