From 29b1eb3ed30e0dd50ba1cfe222a33b070e3e6e0b Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 1 May 2021 01:48:43 +0200 Subject: chore(docs): Update all integers to not use width (#448) * float * VARCHAR * TIMESTAMP * BIGINT * MEDIUMINT * SMALLINT * TINYINT * INT * BLOB * SIGNED/UNSIGNED * AUTO_INCREMENT * \(\d+\) * Update Bit-and_bytes-tutorial.md * clean-up * Last mistakes * this one didnt commit lul --- docs/item_refund_instance.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/item_refund_instance.md') diff --git a/docs/item_refund_instance.md b/docs/item_refund_instance.md index 75b0f01..ec673bf 100644 --- a/docs/item_refund_instance.md +++ b/docs/item_refund_instance.md @@ -10,10 +10,10 @@ This table serves as a receipt of refundable purchases during a 2 hour ingame ti | Field | Type | Attributes | Key | Null | Default | Extra | Comment | |-----------------------|-------------|------------|-----|------|---------|--------|-------------| -| [item_guid][1] | int(10) | unsigned | PRI | NO | | Unique | Item GUID | -| [player_guid][2] | int(10) | unsigned | PRI | NO | | | Player GUID | -| [paidMoney][3] | int(10) | unsigned | | NO | 0 | | | -| [paidExtendedCost][4] | smallint(5) | unsigned | | NO | 0 | | | +| [item_guid][1] | INT | UNSIGNED | PRI | NO | | Unique | Item GUID | +| [player_guid][2] | INT | UNSIGNED | PRI | NO | | | Player GUID | +| [paidMoney][3] | INT | UNSIGNED | | NO | 0 | | | +| [paidExtendedCost][4] | SMALLINT | UNSIGNED | | NO | 0 | | | [1]: #item_guid [2]: #player_guid -- cgit