Troubleshooting - not listed scripts

Here you will find the most common problems listed! (is always updated)

1

B-Garage SQL

CREATE TABLE IF NOT EXISTS `owned_vehicles` (
    `owner` varchar(40) NOT NULL,
    `plate` varchar(12) NOT NULL,
    `vehicle` longtext,
    `type` varchar(20) NOT NULL DEFAULT 'car',
    `job` varchar(20) NOT NULL DEFAULT 'civ',
    `stored` tinyint(4) NOT NULL DEFAULT '0',
    PRIMARY KEY (`plate`)
);

Last updated

Was this helpful?