12 lines
453 B
SQL
12 lines
453 B
SQL
CREATE TABLE IF NOT EXISTS `occasion_vehicles` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`seller` varchar(50) DEFAULT NULL,
|
|
`price` int(11) DEFAULT NULL,
|
|
`description` longtext DEFAULT NULL,
|
|
`plate` varchar(50) DEFAULT NULL,
|
|
`model` varchar(50) DEFAULT NULL,
|
|
`mods` text DEFAULT NULL,
|
|
`occasionid` varchar(50) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `occasionId` (`occasionid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=325 DEFAULT CHARSET=utf8mb4; |