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/instance.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docs/instance.md') diff --git a/docs/instance.md b/docs/instance.md index ae14845..845b395 100644 --- a/docs/instance.md +++ b/docs/instance.md @@ -10,12 +10,12 @@ This table holds static information on all current instances that have not yet b | Field | Type | Attributes | Key | Null | Default | Extra | Comment | |--------------------------|-------------|------------|-----|------|---------|-------|---------| -| [id][1] | int(10) | unsigned | PRI | NO | 0 | | | -| [map][2] | smallint(5) | unsigned | | NO | 0 | | | -| [resettime][3] | int(10) | unsigned | | NO | 0 | | | -| [difficulty][4] | tinyint(3) | unsigned | | NO | 0 | | | -| [completedEncounters][5] | int(10) | unsigned | | NO | 0 | | | -| [data][6] | tinytext | signed | | NO | | | | +| [id][1] | INT | UNSIGNED | PRI | NO | 0 | | | +| [map][2] | SMALLINT | UNSIGNED | | NO | 0 | | | +| [resettime][3] | INT | UNSIGNED | | NO | 0 | | | +| [difficulty][4] | TINYINT | UNSIGNED | | NO | 0 | | | +| [completedEncounters][5] | INT | UNSIGNED | | NO | 0 | | | +| [data][6] | tinytext | SIGNED | | NO | | | | [1]: #id [2]: #map -- cgit