mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 09:18:53 +00:00
13 lines
246 B
SQL
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`)
|
|
);
|