diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-05-01 01:48:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-01 01:48:43 +0200 |
| commit | 29b1eb3ed30e0dd50ba1cfe222a33b070e3e6e0b (patch) | |
| tree | 777be1e4c5796cd2531e7959632a48f5cb5b4f22 /docs/battleground_template.md | |
| parent | 2df273f79165b95b8b0b2ab471ecb8b2a54edb21 (diff) | |
| download | wiki-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/battleground_template.md')
| -rw-r--r-- | docs/battleground_template.md | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/battleground_template.md b/docs/battleground_template.md index d75d670..5d7a5d7 100644 --- a/docs/battleground_template.md +++ b/docs/battleground_template.md @@ -10,17 +10,17 @@ Contains information about the different battlegrounds, like how many players ar | Field | Type | Atributes | Key | Null | Default | Extra | Comment | |------------------------|--------------|-----------|-----|------|---------|-------|---------| -| [ID][1] | mediumint(8) | unsigned | PRI | NO | 0 | | | -| [MinPlayersPerTeam][2] | smallint(5) | unsigned | | NO | 0 | | | -| [MaxPlayersPerTeam][3] | smallint(5) | unsigned | | NO | 0 | | | -| [MinLvl][4] | tinyint(3) | unsigned | | NO | 0 | | | -| [MaxLvl][5] | tinyint(3) | unsigned | | NO | 0 | | | -| [AllianceStartLoc][6] | mediumint(8) | unsigned | | NO | | | | -| [AllianceStartO][7] | float | signed | | NO | | | | -| [HordeStartLoc][8] | mediumint(8) | unsigned | | NO | | | | -| [HordeStartO][9] | float | signed | | NO | | | | -| [StartMaxDist][10] | float | signed | | NO | 0 | | | -| [Weight][11] | tinyint(3) | unsigned | | NO | 1 | | | +| [ID][1] | MEDIUMINT | UNSIGNED | PRI | NO | 0 | | | +| [MinPlayersPerTeam][2] | SMALLINT | UNSIGNED | | NO | 0 | | | +| [MaxPlayersPerTeam][3] | SMALLINT | UNSIGNED | | NO | 0 | | | +| [MinLvl][4] | TINYINT | UNSIGNED | | NO | 0 | | | +| [MaxLvl][5] | TINYINT | UNSIGNED | | NO | 0 | | | +| [AllianceStartLoc][6] | MEDIUMINT | UNSIGNED | | NO | | | | +| [AllianceStartO][7] | FLOAT | SIGNED | | NO | | | | +| [HordeStartLoc][8] | MEDIUMINT | UNSIGNED | | NO | | | | +| [HordeStartO][9] | FLOAT | SIGNED | | NO | | | | +| [StartMaxDist][10] | FLOAT | SIGNED | | NO | 0 | | | +| [Weight][11] | TINYINT | UNSIGNED | | NO | 1 | | | | [ScriptName][12] | char(64) | | | NO | | | | | [Comment][13] | char(38) | | | NO | | | | |
