mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
11 lines
362 B
SQL
11 lines
362 B
SQL
DROP TABLE IF EXISTS `playerbots_tele_cache`;
|
|
CREATE TABLE `playerbots_tele_cache` (
|
|
`id` INT(11) auto_increment,
|
|
`level` TINYINT(3) NOT NULL,
|
|
`map_id` mediumint(8) NOT NULL,
|
|
`x` float(8) NOT NULL,
|
|
`y` float(8) NOT NULL,
|
|
`z` float(8) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Playerbots Tele Cache';
|