summaryrefslogtreecommitdiff
path: root/docs/corpse.md
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-05-01 01:48:43 +0200
committerGitHub <noreply@github.com>2021-05-01 01:48:43 +0200
commit29b1eb3ed30e0dd50ba1cfe222a33b070e3e6e0b (patch)
tree777be1e4c5796cd2531e7959632a48f5cb5b4f22 /docs/corpse.md
parent2df273f79165b95b8b0b2ab471ecb8b2a54edb21 (diff)
downloadwiki-29b1eb3ed30e0dd50ba1cfe222a33b070e3e6e0b.tar.gz
wiki-29b1eb3ed30e0dd50ba1cfe222a33b070e3e6e0b.tar.bz2
wiki-29b1eb3ed30e0dd50ba1cfe222a33b070e3e6e0b.zip
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
Diffstat (limited to 'docs/corpse.md')
-rw-r--r--docs/corpse.md36
1 files changed, 18 insertions, 18 deletions
diff --git a/docs/corpse.md b/docs/corpse.md
index d842395..1626b20 100644
--- a/docs/corpse.md
+++ b/docs/corpse.md
@@ -2,21 +2,21 @@
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
|-------------|-------------|------------|-----|------|---------|--------|------------------------------------|
-| corpseGuid | int(10) | unsigned | PRI | NO | 0 | Unique | Global Unique Identifier |
-| guid | int(10) | unsigned | | NO | 0 | | Character Global Unique Identifier |
-| posX | float | signed | | NO | 0 | | |
-| posY | float | signed | | NO | 0 | | |
-| posZ | float | signed | | NO | 0 | | |
-| orientation | float | signed | | NO | 0 | | |
-| mapId | smallint(5) | unsigned | | NO | 0 | | Map Identifier |
-| phaseMask | smallint(5) | unsigned | | NO | 0 | | |
-| displayId | int(10) | unsigned | | NO | 0 | | |
-| itemCache | text | signed | | NO | | | |
-| bytes1 | int(10) | unsigned | | NO | 0 | | |
-| bytes2 | int(10) | unsigned | | NO | 0 | | |
-| guildId | int(10) | unsigned | | NO | 0 | | |
-| flags | tinyint(3) | unsigned | | NO | 0 | | |
-| dynFlags | tinyint(3) | unsigned | | NO | 0 | | |
-| time | int(10) | unsigned | | NO | 0 | | |
-| corpseType | tinyint(3) | unsigned | | NO | 0 | | |
-| instanceId | int(10) | unsigned | | NO | 0 | | |
+| corpseGuid | INT | UNSIGNED | PRI | NO | 0 | Unique | Global Unique Identifier |
+| guid | INT | UNSIGNED | | NO | 0 | | Character Global Unique Identifier |
+| posX | FLOAT | SIGNED | | NO | 0 | | |
+| posY | FLOAT | SIGNED | | NO | 0 | | |
+| posZ | FLOAT | SIGNED | | NO | 0 | | |
+| orientation | FLOAT | SIGNED | | NO | 0 | | |
+| mapId | SMALLINT | UNSIGNED | | NO | 0 | | Map Identifier |
+| phaseMask | SMALLINT | UNSIGNED | | NO | 0 | | |
+| displayId | INT | UNSIGNED | | NO | 0 | | |
+| itemCache | text | SIGNED | | NO | | | |
+| bytes1 | INT | UNSIGNED | | NO | 0 | | |
+| bytes2 | INT | UNSIGNED | | NO | 0 | | |
+| guildId | INT | UNSIGNED | | NO | 0 | | |
+| flags | TINYINT | UNSIGNED | | NO | 0 | | |
+| dynFlags | TINYINT | UNSIGNED | | NO | 0 | | |
+| time | INT | UNSIGNED | | NO | 0 | | |
+| corpseType | TINYINT | UNSIGNED | | NO | 0 | | |
+| instanceId | INT | UNSIGNED | | NO | 0 | | |