diff options
| author | Shauren <shauren.trinity@gmail.com> | 2017-08-20 14:11:51 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2017-08-20 14:12:25 +0200 |
| commit | fb1fdf27b951fafbcb68c97675f75ef98aa5e3b7 (patch) | |
| tree | 231abb9641515e0e75abdcf09b5f0ef7dfbc962b /sql | |
| parent | 6a296c7c91fe00144c858b8a611537da05d7e8ac (diff) | |
Core/Creatures: Fixed trainers that don't use gossip but open trainer list directly from CMSG_TRAINER_LIST
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2017_08_20_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_08_20_00_world.sql b/sql/updates/world/master/2017_08_20_00_world.sql new file mode 100644 index 00000000000..d77b9d46ae3 --- /dev/null +++ b/sql/updates/world/master/2017_08_20_00_world.sql @@ -0,0 +1,9 @@ +-- +-- Table structure for table `creature_default_trainer` +-- +DROP TABLE IF EXISTS `creature_default_trainer`; +CREATE TABLE `creature_default_trainer` ( + `CreatureId` int(11) UNSIGNED NOT NULL, + `TrainerId` int(11) UNSIGNED NOT NULL DEFAULT '0', + PRIMARY KEY (`CreatureId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
