Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
---|---|---|---|---|---|---|---|---|---|---|---|
ear_tag_guid | uuid | 2147483647 | case_management.uuid_generate_v4() |
|
|
System generated unique key for an ear tag. 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. |
|||||
ear_code | varchar | 10 | null |
|
|
A human readable code used to identify an ear type. |
|||||
ear_tag_identifier | varchar | 10 | null |
|
|
An identifier used to label an animal, not used as a natural key as they are not guaranteed to be unique |
|||||
create_user_id | varchar | 32 | null |
|
|
The id of the user that created the ear_tag record. |
|||||
create_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the ear_tag 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 ear_tag record. |
|||||
update_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the ear_tag record was updated. The timestamp is stored in UTC with no Offset. |
|||||
active_ind | bool | 1 | √ | null |
|
|
A boolean indicator to determine if the ear_tag record is active. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PK_ear_tag_guid | Primary key | Asc | ear_tag_guid |