diff options
| author | offl <offl@users.noreply.github.com> | 2020-07-08 17:30:56 +0200 |
|---|---|---|
| committer | Killyana <Killyana@users.noreply.github.com> | 2020-07-08 17:30:56 +0200 |
| commit | a2bf8693eb9c9b59572176dd771673e0b1bce382 (patch) | |
| tree | 68ad63252ac6bef7baee097c6052b60e4aad604b | |
| parent | 79c269c161e66c8c1903160723e4fca12e40f360 (diff) | |
DB: Add Comment column to spell_scripts, event_scripts and waypoint_scripts
Closes #24932
| -rw-r--r-- | sql/updates/world/3.3.5/2020_07_08_01_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
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 ''; |
