Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE `vehicles` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `make` char(45) DEFAULT NULL,
- `model` char(45) DEFAULT NULL,
- `registration` char(45) DEFAULT NULL,
- `price_average` int(11) DEFAULT NULL COMMENT 'This is the price expected to be paid for this vehicle in average condition.',
- `price_forecourt` int(11) DEFAULT NULL COMMENT 'This is the price expected to be paid for this vehicle on the garage forecourt.',
- `mileage` int(11) DEFAULT NULL,
- `fuel_type` char(45) DEFAULT NULL,
- `colour` char(45) DEFAULT NULL,
- `MOT_expiry_date` date DEFAULT NULL,
- `vin` varchar(45) DEFAULT NULL,
- `arrival_time` datetime DEFAULT NULL,
- `departure_time` datetime DEFAULT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8mb4;
Advertisement
Add Comment
Please, Sign In to add comment