diff options
| author | Walter Pagani <paganiwalter@gmail.com> | 2021-01-02 14:41:47 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-02 18:41:47 +0100 |
| commit | db9833ab37bb45207b1f7d62479572e2d619b239 (patch) | |
| tree | a333022175986458c3912cf9cfe28ad944975231 | |
| parent | 5ffd99b588b4e9cef899751acd0ba1f0c80f7b59 (diff) | |
| download | wiki-db9833ab37bb45207b1f7d62479572e2d619b239.tar.gz wiki-db9833ab37bb45207b1f7d62479572e2d619b239.tar.bz2 wiki-db9833ab37bb45207b1f7d62479572e2d619b239.zip | |
docs: structure and data of `achievement_reward_locale` (#320)
| -rw-r--r-- | docs/achievement_reward_locale.md | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/docs/achievement_reward_locale.md b/docs/achievement_reward_locale.md index 3163d88..6d66338 100644 --- a/docs/achievement_reward_locale.md +++ b/docs/achievement_reward_locale.md @@ -4,41 +4,41 @@ **The \`achievement\_reward\_locale\` table** -`table-no-description` - **Structure** -| | | | | | | | | -|---------------------------------------------------------|--------------|----------------|---------|----------|-------------|-----------|-------------| -| **Field** | **Type** | **Attributes** | **Key** | **Null** | **Default** | **Extra** | **Comment** | -| [entry](#entry) | mediumint(8) | unsigned | PRI | NO | 0 | | | -| [subject\_loc1](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [subject\_loc2](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [subject\_loc3](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [subject\_loc4](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [subject\_loc5](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [subject\_loc6](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [subject\_loc7](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [subject\_loc8](#subject_loc) | varchar(100) | signed | | NO | NULL | | | -| [text\_loc1](#text_loc) | text | signed | | YES | NULL | | | -| [text\_loc2](#text_loc) | text | signed | | YES | NULL | | | -| [text\_loc3](#text_loc) | text | signed | | YES | NULL | | | -| [text\_loc4](#text_loc) | text | signed | | YES | NULL | | | -| [text\_loc5](#text_loc) | text | signed | | YES | NULL | | | -| [text\_loc6](#text_loc) | text | signed | | YES | NULL | | | -| [text\_loc7](#text_loc) | text | signed | | YES | NULL | | | -| [text\_loc8](#text_loc) | text | signed | | YES | NULL | | | +| Field | Type | Attributes | Collation | Null | Key | Default | Extra | Comment | +|---------|--------------|------------|-----------------|------|-----|---------|-------|---------| +| ID | mediumint(8) | unsigned | | NO | PRI | 0 | | | +| Locale | varchar(4) | | utf8_general_ci | NO | PRI | (NULL) | | | +| Subject | text | | utf8_general_ci | YES | | (NULL) | | | +| Text | text | | utf8_general_ci | YES | | (NULL) | | | **Description of the fields** -### entry +### ID + +It is the ID of the achievement obtained from `achievement_reward` + +### Locale + +This is the language of the gaming client. -`field-no-description|1` +| ID | Language | +|----|----------| +| 0 | enUS | +| 1 | koKR | +| 2 | frFR | +| 3 | deDE | +| 4 | zhCN | +| 5 | zhTW | +| 6 | esES | +| 7 | esMX | +| 8 | ruRU | -### subject\_loc +### Subject -`field-no-description|2` +It is the text of the column `Subject` of the table `achievement_reward` -### text\_loc +### Text -`field-no-description|3` +It is the text of the column `Body` of the table `achievement_reward` |
