mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
10 lines
297 B
SQL
10 lines
297 B
SQL
DROP TABLE IF EXISTS `playerbots_db_store`;
|
|
CREATE TABLE `playerbots_db_store` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`guid` int(11) NOT NULL,
|
|
`key` varchar(32) NOT NULL,
|
|
`value` varchar(255) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|