mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 09:48:52 +00:00
a79726fb5d
-Added Swedish translation -Uppdated __resource.lua -Upgraded esx_garage.sql with support for netr_garages
14 lines
284 B
SQL
14 lines
284 B
SQL
USE `essentialmode`;
|
|
|
|
CREATE TABLE `user_parkings` (
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`identifier` varchar(60) DEFAULT NULL,
|
|
`garage` varchar(60) DEFAULT NULL,
|
|
`plate` varchar(60) DEFAULT NULL,
|
|
`zone` int(11) NOT NULL,
|
|
`vehicle` longtext,
|
|
|
|
PRIMARY KEY (`id`)
|
|
);
|