From 6cda7ed2f5e58966c09c13c87026a7ab8840a385 Mon Sep 17 00:00:00 2001 From: shortybsd Date: Sat, 16 May 2020 18:51:19 -0500 Subject: [PATCH] Update esx_society.sql int - Integer display width is deprecated and will be removed in a future release. --- esx_society.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esx_society.sql b/esx_society.sql index 163ce9f6..a0191019 100644 --- a/esx_society.sql +++ b/esx_society.sql @@ -1,10 +1,10 @@ USE `es_extended`; CREATE TABLE `society_moneywash` ( - `id` int(11) NOT NULL AUTO_INCREMENT, + `id` int NOT NULL AUTO_INCREMENT, `identifier` varchar(60) NOT NULL, `society` varchar(60) NOT NULL, - `amount` int(11) NOT NULL, + `amount` int NOT NULL, PRIMARY KEY (`id`) );