· 8 years ago · Mar 30, 2018, 09:54 PM
1create table IF Not EXISTS Vehicle(
2 id int AUTO_INCREMENT,
3 designation VARCHAR(30),
4 manufactured int,
5 description VARCHAR(30),
6 seat_number int,
7 license_plates VARCHAR(10),
8 driving_type VARCHAR(10),
9 power_KW int,
10 price numeric(6,2),
11 created TIMESTAMP,
12 img_path VARCHAR(120),
13 typ VehicleType,
14 license DrivingLicense,
15 last_updated TIMESTAMP,
16 PRIMARY KEY(id)
17);