From 9b78b2d5c048d73a9105ae6afe59e841ea887141 Mon Sep 17 00:00:00 2001 From: shortybsd Date: Sat, 16 May 2020 23:49:48 -0500 Subject: [PATCH] Update esx_shops.sql int - Integer display width is deprecated and will be removed in a future release. --- esx_shops.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esx_shops.sql b/esx_shops.sql index 19131d39..e60fdd04 100644 --- a/esx_shops.sql +++ b/esx_shops.sql @@ -1,10 +1,10 @@ USE `es_extended`; CREATE TABLE `shops` ( - `id` int(11) NOT NULL AUTO_INCREMENT, + `id` int NOT NULL AUTO_INCREMENT, `store` varchar(100) NOT NULL, `item` varchar(100) NOT NULL, - `price` int(11) NOT NULL, + `price` int NOT NULL, PRIMARY KEY (`id`) ); @@ -16,4 +16,4 @@ INSERT INTO `shops` (store, item, price) VALUES ('RobsLiquor','water',15), ('LTDgasoline','bread',30), ('LTDgasoline','water',15) -; \ No newline at end of file +;