diff options
author | ModoX <moardox@gmail.com> | 2024-05-23 10:02:29 +0200 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-05-28 17:36:53 +0200 |
commit | 3857e9254f7ff1fc00a7c959069c698105048a70 (patch) | |
tree | ad914c3b9d46a8182c7028833e4d0d4608ef5f66 | |
parent | 01dee1c3e175ab949dd90806bc9892296986d537 (diff) |
DB/Creature: Set Language field unsigned to sync with usage in code
* allows us to use Shath'Yar in db
(cherry picked from commit 19d7698dc029032178957231fb870c652462bcd8)
-rw-r--r-- | sql/updates/world/master/2024_05_23_00_world.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_05_23_00_world.sql b/sql/updates/world/master/2024_05_23_00_world.sql new file mode 100644 index 00000000000..e109eed82cd --- /dev/null +++ b/sql/updates/world/master/2024_05_23_00_world.sql @@ -0,0 +1 @@ +ALTER TABLE `creature_text` MODIFY COLUMN `Language` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `Type`; |