bro i need races.sql
.
.
.
.
CREATE TABLE IF NOT EXISTS `custom_race_list` (
`raceid` int(11) NOT NULL AUTO_INCREMENT,
`route_file` varchar(100) DEFAULT NULL,
`route_image` varchar(100) DEFAULT NULL,
`category` varchar(50) DEFAULT NULL,
`besttimes` longtext DEFAULT '{}',
PRIMARY KEY (`raceid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
CREATE TABLE IF NOT EXISTS `custom_race_stats` (
`citizenid` varchar(50) NOT NULL,
`level` int(11) DEFAULT 1,
`experience` int(11) DEFAULT 0,
`frst` int(11) DEFAULT 0,
`scnd` int(11) DEFAULT 0,
`thrd` int(11) DEFAULT 0,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`citizenid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO `custom_race_list` (`raceid`, `route_file`, `route_image`, `category`, `besttimes`) VALUES
(1, 'local_files/abc.json', '
https://img.com/abc.jpg', 'category1', '[]'),
(2, 'local_files/def.json', '
https://img.com/def.jpg', 'category2', '[]');
ALTER TABLE users
ADD `fav_vehs` LONGTEXT;