Installation
Insert the sql file in your folder or just copy and paste it.
CREATE TABLE IF NOT EXISTS car_auctions ( id int(11) NOT NULL AUTO_INCREMENT, owner varchar(64) NOT NULL, vehicle longtext NOT NULL, price int(11) NOT NULL, plate varchar(20) DEFAULT NULL, description varchar(255) DEFAULT NULL, PRIMARY KEY (id) )
car_auctions
id
owner
vehicle
price
plate
description
Last updated 8 months ago