mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 09:48:52 +00:00
12 lines
257 B
SQL
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`)
|
|
); |