mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 16:23:21 +00:00
Add SQL
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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`)
|
||||
);
|
||||
Reference in New Issue
Block a user