From 3f4c32ceea32db71ba72aa128e903eb27847f173 Mon Sep 17 00:00:00 2001 From: shortybsd Date: Sat, 16 May 2020 22:51:52 -0500 Subject: [PATCH] Update en_esx_policejob.sql int - Integer display width is deprecated and will be removed in a future release. --- localization/en_esx_policejob.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/localization/en_esx_policejob.sql b/localization/en_esx_policejob.sql index a449c2b4..0eec900b 100644 --- a/localization/en_esx_policejob.sql +++ b/localization/en_esx_policejob.sql @@ -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`) );