diff options
author | Meji <alvaro.megias@outlook.com> | 2024-04-11 10:15:46 +0200 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-05-28 16:40:53 +0200 |
commit | 2c56ee9ce181af94eff7999849af295c9fb7e2ca (patch) | |
tree | 1ea24a087b11f7999ed8da9fcf5703ef3e9b189c /sql | |
parent | 125b6d2ed780b28061aed9d4a6d20276fd8d673e (diff) |
Core/SAI: Added support for StringIds to creature and gameobject targets (#29910)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
(cherry picked from commit 2ce40684595a0e49a7b2355012c2806952698ce4)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2024_04_11_00_world.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_04_11_00_world.sql b/sql/updates/world/master/2024_04_11_00_world.sql new file mode 100644 index 00000000000..74ce05c2e0b --- /dev/null +++ b/sql/updates/world/master/2024_04_11_00_world.sql @@ -0,0 +1,3 @@ +ALTER TABLE `smart_scripts` + ADD `action_param_string` VARCHAR(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `action_param7`, + ADD `target_param_string` VARCHAR(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `target_param4`; |