summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHelias <stefanoborzi32@gmail.com>2023-01-09 10:43:56 +0100
committerHelias <stefanoborzi32@gmail.com>2023-01-09 10:43:56 +0100
commit6478c2a8261af8a22f9072b70dc64113dc414ec9 (patch)
tree631a58b58b25558f37534de834b15314c36a7eeb /docs
parentb36995cb2fb26beb508d1b80aa35fdc2b7740cfe (diff)
downloadwiki-revert-standard-name.tar.gz
wiki-revert-standard-name.tar.bz2
wiki-revert-standard-name.zip
Revert "funny breaking change haha (#856)"revert-standard-name
This reverts commit 455534d7028482aa2df8a4999de77de54cd1f7ad.
Diffstat (limited to 'docs')
-rw-r--r--docs/sql-standards.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/sql-standards.md b/docs/sql-standards.md
index 23823c5..b97c76b 100644
--- a/docs/sql-standards.md
+++ b/docs/sql-standards.md
@@ -162,7 +162,6 @@ UPDATE `creature_template` SET `mechanic_immune_mask`=`mechanic_immune_mask`&~(6
For the most part, tables should be written in snake case, and columns should be written in upper camel case.
Tables:
-
```
broadcast_text
creature_loot_template
@@ -170,31 +169,12 @@ points_of_interest
```
Columns:
-
```
MaleText
QuestRequired
PositionX
```
-In the case of column names with acronyms (e.g. GUID, ID, NPC, etc) the letters in the acronym should be uppercase.
-
-Wrong:
-
-```
-Itemguid
-DisplayId
-RequiredNpcOrGoCount
-```
-
-Correct:
-
-```
-ItemGUID
-DisplayID
-RequiredNPCOrGOCount
-```
-
### Integers
We do not define the width of an integer when we create new columns. (Width is deprecated in later versions of MySQL 8)