Update esx_vehicleshop.sql

int & TINYINT - Integer display width is deprecated and will be removed in a future release.
This commit is contained in:
shortybsd
2020-05-16 22:36:31 -05:00
committed by GitHub
parent 485897fb5c
commit f70ac34a6a
+1 -1
View File
@@ -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`)