1. Run the file trucker.sql inside of the m-Trucker
CREATE TABLE IF NOT EXISTS `m_trucker` (
`id` int NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
`experience` int NOT NULL,
`level` int DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;