I apologize for the late reply. The database was created so that a friend sent me an empty database structure, which he used on the server and worked for him.
CREATE TABLE IF NOT EXISTS `vehicles_shop` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`vehmtamodel` int(11) DEFAULT '0',
`vehbrand` text COLLATE utf8_czech_ci,
`vehmodel` text COLLATE utf8_czech_ci,
`vehyear` int(11) DEFAULT '2014',
`vehprice` int(11) DEFAULT '0',
`vehtax` int(11) DEFAULT '0',
`createdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` int(11) NOT NULL DEFAULT '0',
`updatedate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updatedby` int(11) NOT NULL DEFAULT '0',
`notes` text COLLATE utf8_czech_ci,
`handling` varchar(1000) COLLATE utf8_czech_ci DEFAULT NULL,
`duration` int(11) NOT NULL DEFAULT '1000',
`enabled` int(1) NOT NULL DEFAULT '0',
`spawnto` tinyint(2) NOT NULL DEFAULT '0',
`doortype` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id_UNIQUE` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci AUTO_INCREMENT=1 ;