Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
---|---|---|---|---|---|---|---|---|---|---|---|
team_guid | uuid | 2147483647 | uuid_generate_v4() |
|
|
A system generated guid to uniquely identify a TEAM |
|||||
team_code | varchar | 15 | null |
|
|
A human readable code used to identify a TEAM |
|||||
agency_code | varchar | 6 | null |
|
|
||||||
active_ind | bool | 1 | true |
|
|
A boolean indicator to determine if the TEAM is active. |
|||||
create_user_id | varchar | 32 | √ | null |
|
|
The id of the user that created the TEAM. |
||||
create_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the TEAM 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 TEAM |
||||
update_utc_timestamp | timestamp | 29,6 | null |
|
|
The timestamp when the TEAM was updated. The timestamp is stored in UTC with no Offset. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
team_pk | Primary key | Asc | team_guid |
team_un | Must be unique | Asc/Asc | team_code + agency_code |