diff options
author | Meji <alvaro.megias@outlook.com> | 2024-04-11 10:15:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 10:15:46 +0200 |
commit | 2ce40684595a0e49a7b2355012c2806952698ce4 (patch) | |
tree | 17cbb8202856fdb2e5c27ed596ce9daea9044fb3 /sql | |
parent | bec5bdb61b1b78ae7f750019b9a187b489ebb496 (diff) |
Core/SAI: Added support for StringIds to creature and gameobject targets (#29910)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
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`; |