From f70ac34a6a70ba4705f1635cdf5e11d15a16c0da Mon Sep 17 00:00:00 2001 From: shortybsd Date: Sat, 16 May 2020 22:36:31 -0500 Subject: [PATCH] Update esx_vehicleshop.sql int & TINYINT - Integer display width is deprecated and will be removed in a future release. --- esx_vehicleshop.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esx_vehicleshop.sql b/esx_vehicleshop.sql index 5d23e69f..56bce343 100644 --- a/esx_vehicleshop.sql +++ b/esx_vehicleshop.sql @@ -83,7 +83,7 @@ INSERT INTO `vehicle_categories` (name, label) VALUES CREATE TABLE `vehicles` ( `name` varchar(60) NOT NULL, `model` varchar(60) NOT NULL, - `price` int(11) NOT NULL, + `price` int NOT NULL, `category` varchar(60) DEFAULT NULL, PRIMARY KEY (`model`)