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