From b7b45a70fde44d8e1c65fc5672dc336a6b67dc17 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 1 May 2021 12:28:59 +0200 Subject: chore(docs): Basic implement of recovery_item (#453) --- docs/database-characters.md | 1 + docs/recovery_item.md | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 docs/recovery_item.md 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. -- cgit