summaryrefslogtreecommitdiff
path: root/docs/game_event.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/game_event.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/game_event.md')
-rw-r--r--docs/game_event.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/game_event.md b/docs/game_event.md
index 4931828..624c853 100644
--- a/docs/game_event.md
+++ b/docs/game_event.md
@@ -6,16 +6,16 @@ This table holds definitions for all game events that are activated or deactivat
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
|-------------------|--------------|------------|-----|------|---------|--------|--------------------------------------------------------------------------------------------------------------------------------------|
-| [eventEntry][1] | tinyint(3) | unsigned | PRI | NO | | Unique | Entry of the game event |
-| [start_time][2] | timestamp | | | YES | NULL | | Absolute start date, the event will never start before |
-| [end_time][3] | timestamp | | | YES | NULL | | Absolute end date, the event will never start after; if NULL it will be implicitly set to 2 years in the future on each server start |
-| [occurrence][4] | bigint(20) | unsigned | | NO | | | Delay in minutes between occurrences of the event |
-| [length][5] | bigint(20) | unsigned | | NO | | | Length in minutes of the event |
-| [holiday][6] | mediumint(8) | unsigned | | NO | | | Client side holiday id (from dbc) |
-| [holidayStage][7] | tinyint(3) | unsigned | | NO | | | |
-| [description][8] | varchar(255) | signed | | YES | NULL | | Description of the event displayed in console |
-| [world_event][9] | tinyint(3) | unsigned | | NO | | | 0 if normal event, 1 if world event |
-| [announce][10] | tinyint(3) | unsigned | | YES | 2 | | 0 dont announce, 1 announce, 2 value from config |
+| [eventEntry][1] | TINYINT | UNSIGNED | PRI | NO | | Unique | Entry of the game event |
+| [start_time][2] | TIMESTAMP | | | YES | NULL | | Absolute start date, the event will never start before |
+| [end_time][3] | TIMESTAMP | | | YES | NULL | | Absolute end date, the event will never start after; if NULL it will be implicitly set to 2 years in the future on each server start |
+| [occurrence][4] | BIGINT | UNSIGNED | | NO | | | Delay in minutes between occurrences of the event |
+| [length][5] | BIGINT | UNSIGNED | | NO | | | Length in minutes of the event |
+| [holiday][6] | MEDIUMINT | UNSIGNED | | NO | | | Client side holiday id (from dbc) |
+| [holidayStage][7] | TINYINT | UNSIGNED | | NO | | | |
+| [description][8] | VARCHAR(255) | SIGNED | | YES | NULL | | Description of the event displayed in console |
+| [world_event][9] | TINYINT | UNSIGNED | | NO | | | 0 if normal event, 1 if world event |
+| [announce][10] | TINYINT | UNSIGNED | | YES | 2 | | 0 dont announce, 1 announce, 2 value from config |
[1]: #evententry
[2]: #start_time