Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
id | INT UNSIGNED | 10 | √ | null |
|
|
Tag ID |
|||||
name | VARCHAR | 64 | null |
|
|
Name of Tag. |
||||||
description | VARCHAR | 255 | √ | null |
|
|
Optional verbose description of the tag. |
|||||
parent_id | INT UNSIGNED | 10 | √ | null |
|
|
Optional parent id for this tag. |
|||||
is_selectable | TINYINT | 3 | √ | 1 |
|
|
Is this tag selectable / displayed |
|||||
is_reserved | TINYINT | 3 | √ | 0 |
|
|
||||||
TINYINT | 3 | √ | 0 |
|
|
|||||||
used_for | VARCHAR | 64 | √ | null |
|
|
||||||
created_id | INT UNSIGNED | 10 | √ | null |
|
|
FK to civicrm_contact, who created this tag |
|||||
created_date | DATETIME | 19 | √ | null |
|
|
Date and time that tag was created. |
|||||
color | VARCHAR | 255 | √ | null |
|
|
Hex color value e.g. #ffffff |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PRIMARY | Primary key | Asc | id |
FK_civicrm_tag_created_id | Performance | Asc | created_id |
FK_civicrm_tag_parent_id | Performance | Asc | parent_id |
UI_name | Must be unique | Asc | name |