hotfix_data
The `hotfix_data` table
This table contains the data for hotfixes. Every change within the hotfixes database needs to have a record in this table so the client knows that it should fetch the data from the server.
Structure
Field | Type | Attributes | Key | Null | Default | Extra | Comment |
TableHash | int(10) | unsigned | PRI | NO | 0 | ||
RecordID | int(10) | signed | PRI | NO | |||
Timestamp | int(10) | unsigned | PRI | NO | 0 | ||
Deleted | tinyint(3) | unsigned | NO | 0 |
Description of the fields
TableHash
This field contains the DB2 Hashes which can be found in the WoWPacketParser.
The hash needs to equal the db2 hash of the table that you applied a hotfix to.
RecordID
The ID of the table that you applied the hotfix to. This ID is unique to the table defined with TableHash.
Timestamp
The date when the hotfix was applied, in Unix time.
Deleted
Boolean 0 or 1 telling the client whether the applied hotfix has been deleted or not.