diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-05-01 12:28:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-01 12:28:59 +0200 |
| commit | b7b45a70fde44d8e1c65fc5672dc336a6b67dc17 (patch) | |
| tree | beb93bef411f342a3455c875ecf6e20c5cf4d29b /docs | |
| parent | 0bdf17876dc272627d6216931d6d57c0fdfe223c (diff) | |
| download | wiki-b7b45a70fde44d8e1c65fc5672dc336a6b67dc17.tar.gz wiki-b7b45a70fde44d8e1c65fc5672dc336a6b67dc17.tar.bz2 wiki-b7b45a70fde44d8e1c65fc5672dc336a6b67dc17.zip | |
chore(docs): Basic implement of recovery_item (#453)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/database-characters.md | 1 | ||||
| -rw-r--r-- | docs/recovery_item.md | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/docs/database-characters.md b/docs/database-characters.md index 317da13..32c985c 100644 --- a/docs/database-characters.md +++ b/docs/database-characters.md @@ -90,6 +90,7 @@ NOTE: the DB documentation is still a work in progress. We need your help to mak - [pvpstats_battlegrounds](pvpstats_battlegrounds.md) - [pvpstats_players](pvpstats_players.md) - [quest_tracker](quest_tracker.md) +- [recovery_item](recovery_item.md) - [reserved_name](reserved_name.md) - [version_db_characters](version_db_characters.md) - [warden_action](warden_action.md) diff --git a/docs/recovery_item.md b/docs/recovery_item.md new file mode 100644 index 0000000..c2ad639 --- /dev/null +++ b/docs/recovery_item.md @@ -0,0 +1,39 @@ +# recovery_item + +[<-Back-to:Characters](database-characters.md) + +**The \`recovery_item\` table** + +This table holds information about character's matchmaker rating in all team types. + +**Structure** + +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +|-----------------------|-------------|------------|-----|------|---------|----------------|---------| +| [Id][1] | INT | UNSIGNED | PRI | NO | | AUTO_INCREMENT | | +| [Guid][2] | INT | UNSIGNED | KEY | NO | 0 | idx_guid | | +| [ItemEntry][3] | MEDIUMINT | UNSIGNED | | NO | 0 | | | +| [Count][4] | INT | UNSIGNED | | NO | 0 | | | + +[1]: #id +[2]: #guid +[3]: #itementry +[4]: #count + +**Description of the fields** + +### Id + +`field-no-description|1` + +### Guid + +`field-no-description|2` + +### ItemEntry + +[item_template.entry](item_template#entry) + +### Count + +The amount of items. |
