From a2bf8693eb9c9b59572176dd771673e0b1bce382 Mon Sep 17 00:00:00 2001 From: offl Date: Wed, 8 Jul 2020 17:30:56 +0200 Subject: DB: Add Comment column to spell_scripts, event_scripts and waypoint_scripts Closes #24932 --- sql/updates/world/3.3.5/2020_07_08_01_world.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/3.3.5/2020_07_08_01_world.sql (limited to 'sql') diff --git a/sql/updates/world/3.3.5/2020_07_08_01_world.sql b/sql/updates/world/3.3.5/2020_07_08_01_world.sql new file mode 100644 index 00000000000..d35b7ed2801 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_07_08_01_world.sql @@ -0,0 +1,4 @@ +-- +ALTER TABLE `spell_scripts` ADD COLUMN `Comment` varchar(255) NOT NULL DEFAULT ''; +ALTER TABLE `event_scripts` ADD COLUMN `Comment` varchar(255) NOT NULL DEFAULT ''; +ALTER TABLE `waypoint_scripts` ADD COLUMN `Comment` varchar(255) NOT NULL DEFAULT ''; -- cgit v1.2.3