mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 16:23:21 +00:00
A lot of cleanup, see desc
- Improved i18n formatting - All employees can buy vehicles - Fixed exploit taking more than you can carry from the society
This commit is contained in:
+1
-2
@@ -72,12 +72,11 @@ INSERT INTO `vehicle_categories` (name, label) VALUES
|
||||
;
|
||||
|
||||
CREATE TABLE `vehicles` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(60) NOT NULL,
|
||||
`model` varchar(60) NOT NULL,
|
||||
`price` int(11) NOT NULL,
|
||||
`category` varchar(60) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
PRIMARY KEY (`model`)
|
||||
);
|
||||
|
||||
INSERT INTO `vehicles` (name, model, price, category) VALUES
|
||||
|
||||
Reference in New Issue
Block a user