mod-playerbots/sql/playerbots/base/playerbots_preferred_mounts.sql
Bobblybook a430786133 Reapply "Preferred mount selection for bots"
This reverts commit eb5dd450cdcf3de57805f221d95faf8d4d8d5f89.
2024-10-19 22:44:11 +11:00

11 lines
360 B
SQL

DROP TABLE IF EXISTS `playerbots_preferred_mounts`;
CREATE TABLE `playerbots_preferred_mounts` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`guid` INT(11) NOT NULL,
`type` TINYINT(3) NOT NULL COMMENT '0: Ground, 1: Flying',
`spellid` INT(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `guid` (`guid`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;