Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
---|---|---|---|---|---|---|---|---|
id | INT UNSIGNED | 10 | √ | null |
|
|
ID of this entry. |
|
key | VARCHAR | 255 | null |
|
|
The message resource key that identifies this entry along with language and region. |
||
language | CHAR | 2 | null |
|
|
The language that identifies this entry along with key and region. |
||
region | CHAR | 2 | √ | null |
|
|
The region that identifies this entry along with key and language. |
|
value | MEDIUMTEXT | 16777215 | √ | null |
|
|
The message value. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PRIMARY | Primary key | Asc | id |
id_UNIQUE | Must be unique | Asc | id |
key_language_region_UNIQUE | Must be unique | Asc/Asc/Asc | key + language + region |