Files
esx_core/esx_garage.sql
T
2020-04-14 16:50:21 +02:00

13 lines
246 B
SQL

USE `es_extended`;
CREATE TABLE `user_parkings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(60) DEFAULT NULL,
`garage` varchar(60) DEFAULT NULL,
`zone` int(11) NOT NULL,
`vehicle` longtext,
PRIMARY KEY (`id`)
);