mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 09:07:19 +00:00
placed sql into the data folder as core/module describes
This commit is contained in:
10
data/sql/playerbots/base/playerbots_equip_cache.sql
Normal file
10
data/sql/playerbots/base/playerbots_equip_cache.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS `playerbots_equip_cache`;
|
||||
CREATE TABLE `playerbots_equip_cache` (
|
||||
`id` INT(11) auto_increment,
|
||||
`clazz` TINYINT(3) NOT NULL,
|
||||
`lvl` INT(11) NOT NULL,
|
||||
`slot` TINYINT(8) NOT NULL,
|
||||
`quality` INT(11) NOT NULL,
|
||||
`item` INT(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Playerbots equip Cache';
|
||||
Reference in New Issue
Block a user