Update pl_esx_policejob.sql

int - Integer display width is deprecated and will be removed in a future release.
This commit is contained in:
shortybsd
2020-05-16 22:55:12 -05:00
committed by GitHub
parent 2da774ad8a
commit 07c7d40157
+3 -3
View File
@@ -25,10 +25,10 @@ INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_
;
CREATE TABLE `fine_types` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id` int NOT NULL AUTO_INCREMENT,
`label` varchar(255) DEFAULT NULL,
`amount` int(11) DEFAULT NULL,
`category` int(11) DEFAULT NULL,
`amount` int DEFAULT NULL,
`category` int DEFAULT NULL,
PRIMARY KEY (`id`)
);