aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorTeleqraph <nyrdeveloper@gmail.com>2023-12-28 19:11:54 +0100
committerGitHub <noreply@github.com>2023-12-28 19:11:54 +0100
commitbfbda8dcce8d19dda0ee3d8f96d176901902e102 (patch)
tree91b64aff7b61803bb6d4bb31d5eecde169a683ba /sql
parent9c24f3ecd3053c47f07eedff33ce2be2103fa4f6 (diff)
Core/Creatures: Refactor CreatureEliteType (#29525)
* Turn into enum class with official names
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2023_12_28_05_world.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_12_28_05_world.sql b/sql/updates/world/master/2023_12_28_05_world.sql
new file mode 100644
index 00000000000..43c067d7162
--- /dev/null
+++ b/sql/updates/world/master/2023_12_28_05_world.sql
@@ -0,0 +1,2 @@
+ALTER TABLE `creature_template`
+ CHANGE COLUMN `rank` `Classification` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `scale`;