diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2023_06_02_00_world.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_06_02_00_world.sql b/sql/updates/world/master/2023_06_02_00_world.sql new file mode 100644 index 00000000000..0ebca464ea6 --- /dev/null +++ b/sql/updates/world/master/2023_06_02_00_world.sql @@ -0,0 +1,13 @@ +-- +-- Table structure for table `quest_objectives_completion_effect` +-- +DROP TABLE IF EXISTS `quest_objectives_completion_effect`; +CREATE TABLE `quest_objectives_completion_effect` ( + `ObjectiveID` int NOT NULL, + `GameEventID` int DEFAULT NULL, + `SpellID` int DEFAULT NULL, + `ConversationID` int DEFAULT NULL, + `UpdatePhaseShift` tinyint(1) DEFAULT '0', + `UpdateZoneAuras` tinyint(1) DEFAULT '0', + PRIMARY KEY (`ObjectiveID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
