diff options
| author | ModoX <moardox@gmail.com> | 2022-05-18 21:31:25 +0200 |
|---|---|---|
| committer | ModoX <moardox@gmail.com> | 2022-05-18 21:31:25 +0200 |
| commit | 703452d28d05e8690ad802b9c7c22e0df6c50d71 (patch) | |
| tree | f1d6ce554f168f13564d7207c734529ee0a9841b | |
| parent | a4fba9b3c461676622079b166a376e29685d2ca7 (diff) | |
DB/Quest: Added VerifiedBuild column to creature_queststarter, creature_questender, gameobject_queststarter and gameobject_questender
| -rw-r--r-- | sql/updates/world/master/2022_05_18_00_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_05_18_00_world.sql b/sql/updates/world/master/2022_05_18_00_world.sql new file mode 100644 index 00000000000..638f8460480 --- /dev/null +++ b/sql/updates/world/master/2022_05_18_00_world.sql @@ -0,0 +1,4 @@ +ALTER TABLE `creature_queststarter` ADD COLUMN `VerifiedBuild` int unsigned NOT NULL DEFAULT 0 AFTER `quest`; +ALTER TABLE `creature_questender` ADD COLUMN `VerifiedBuild` int unsigned NOT NULL DEFAULT 0 AFTER `quest`; +ALTER TABLE `gameobject_queststarter` ADD COLUMN `VerifiedBuild` int unsigned NOT NULL DEFAULT 0 AFTER `quest`; +ALTER TABLE `gameobject_questender` ADD COLUMN `VerifiedBuild` int unsigned NOT NULL DEFAULT 0 AFTER `quest`; |
