The `recovery_item` table
This table holds information about saved items into database when the player sells items to vendor Items which were kept back in the database after being deleted and are older than the specified amount of days, will be completely deleted.
Table Structure
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
|---|---|---|---|---|---|---|---|
| Id | INT | UNSIGNED | PRI | NO | AUTO_INCREMENT | ||
| Guid | INT | UNSIGNED | NO | 0 | |||
| ItemEntry | MEDIUMINT | UNSIGNED | NO | 0 | |||
| Count | INT | UNSIGNED | NO | 0 | |||
| DeleteDate | INT | UNSIGNED | YES | NULL |
Description of the fields
The ordinal number of the record in this table.
Character guid
See characters.guid.
See item_template.entry.
The amount of items.
Unix timestamp of when the item was deleted. Used to determine when the record is old enough to be purged permanently. NULL if not set.