mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 17:09:08 +00:00
8 lines
284 B
SQL
8 lines
284 B
SQL
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';
|