22 lines
893 B
MySQL
22 lines
893 B
MySQL
|
|
CREATE TABLE IF NOT EXISTS `player_vehicles` (
|
||
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
|
|
`license` varchar(50) DEFAULT NULL,
|
||
|
|
`citizenid` varchar(50) DEFAULT NULL,
|
||
|
|
`vehicle` varchar(50) DEFAULT NULL,
|
||
|
|
`hash` varchar(50) DEFAULT NULL,
|
||
|
|
`mods` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
|
||
|
|
`plate` varchar(15) NOT NULL,
|
||
|
|
`fakeplate` varchar(50) DEFAULT NULL,
|
||
|
|
`garage` varchar(50) DEFAULT NULL,
|
||
|
|
`fuel` int(11) DEFAULT 100,
|
||
|
|
`engine` float DEFAULT 1000,
|
||
|
|
`body` float DEFAULT 1000,
|
||
|
|
`state` int(11) DEFAULT 1,
|
||
|
|
`depotprice` int(11) NOT NULL DEFAULT 0,
|
||
|
|
`drivingdistance` int(50) DEFAULT NULL,
|
||
|
|
`status` text DEFAULT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
UNIQUE KEY `plate` (`plate`),
|
||
|
|
FOREIGN KEY (`citizenid`) REFERENCES `players` (`citizenid`) ON DELETE CASCADE ON UPDATE CASCADE
|
||
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|