summaryrefslogtreecommitdiff
path: root/docs/areatrigger.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/areatrigger.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/areatrigger.md')
-rw-r--r--docs/areatrigger.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/areatrigger.md b/docs/areatrigger.md
index 1e96cf4..faede76 100644
--- a/docs/areatrigger.md
+++ b/docs/areatrigger.md
@@ -10,16 +10,16 @@ This table contains trigger points for events in certain coordinates in the maps
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
|-------------|---------|------------|-----|------|---------|----------------|------------------------------------------------------|
-| entry | int(10) | unsigned | PRI | NO | | auto_increment | |
-| map | int(10) | unsigned | | NO | 0 | | |
-| x | float | | | NO | 0 | | |
-| y | float | | | NO | 0 | | |
-| z | float | | | NO | 0 | | |
-| radius | float | | | NO | 0 | | Seems to be a box of size yards with center at x,y,z |
-| length | float | | | NO | 0 | | Most commonly used when size is 0, but not always |
-| width | float | | | NO | 0 | | Most commonly used when size is 0, but not always |
-| height | float | | | NO | 0 | | Most commonly used when size is 0, but not always |
-| orientation | float | | | NO | 0 | | Most commonly used when size is 0, but not always |
+| entry | INT | UNSIGNED | PRI | NO | | AUTO_INCREMENT | |
+| map | INT | UNSIGNED | | NO | 0 | | |
+| x | FLOAT | | | NO | 0 | | |
+| y | FLOAT | | | NO | 0 | | |
+| z | FLOAT | | | NO | 0 | | |
+| radius | FLOAT | | | NO | 0 | | Seems to be a box of size yards with center at x,y,z |
+| length | FLOAT | | | NO | 0 | | Most commonly used when size is 0, but not always |
+| width | FLOAT | | | NO | 0 | | Most commonly used when size is 0, but not always |
+| height | FLOAT | | | NO | 0 | | Most commonly used when size is 0, but not always |
+| orientation | FLOAT | | | NO | 0 | | Most commonly used when size is 0, but not always |
**Description of the fields**