Update fi_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:52:50 -05:00
committed by GitHub
parent 2da774ad8a
commit d75543a2e6
+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`)
);