From 65d111fca4f25bc9fe40fb5fd5d20742119a87bd Mon Sep 17 00:00:00 2001 From: shortybsd Date: Sat, 16 May 2020 22:28:41 -0500 Subject: [PATCH] Update esx_license.sql int - Integer display width is deprecated and will be removed in a future release. --- esx_license.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esx_license.sql b/esx_license.sql index aaf66187..93d349cc 100644 --- a/esx_license.sql +++ b/esx_license.sql @@ -8,9 +8,9 @@ CREATE TABLE `licenses` ( ); CREATE TABLE `user_licenses` ( - `id` int(11) NOT NULL AUTO_INCREMENT, + `id` int NOT NULL AUTO_INCREMENT, `type` varchar(60) NOT NULL, `owner` varchar(40) NOT NULL, PRIMARY KEY (`id`) -); \ No newline at end of file +);