mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 00:58:33 +00: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;
|