Files
esx_core-esx-framework/esx_garage.sql
T
Jérémie N'gadi bf6ced37b1 Add SQL
2017-08-04 11:49:21 +02:00

12 lines
257 B
SQL

USE `gta5_gamemode_essential`;
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`)
);