DROP TABLE IF EXISTS `markhor_airsoft_general`;
CREATE TABLE `markhor_airsoft_general` (
`id` int(0) NOT NULL AUTO_INCREMENT,
`map` longtext DEFAULT NULL,
`stats` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB;
DROP TABLE IF EXISTS `markhor_airsoft_personal`;
CREATE TABLE `markhor_airsoft_personal` (
`id` int(0) NOT NULL AUTO_INCREMENT,
`license` longtext DEFAULT NULL,
`name` longtext DEFAULT NULL,
`map` longtext DEFAULT NULL,
`stats` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB;