mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
placed sql into the data folder as core/module describes
This commit is contained in:
7
data/sql/playerbots/base/playerbots_rarity_cache.sql
Normal file
7
data/sql/playerbots/base/playerbots_rarity_cache.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
DROP TABLE IF EXISTS `playerbots_rarity_cache`;
|
||||
CREATE TABLE `playerbots_rarity_cache` (
|
||||
`id` INT(11) auto_increment,
|
||||
`item` INT(11) NOT NULL,
|
||||
`rarity` float NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Playerbots Rarity Cache';
|
||||
Reference in New Issue
Block a user