Update esx_shops.sql

int - Integer display width is deprecated and will be removed in a future release.
This commit is contained in:
shortybsd
2020-05-16 23:49:48 -05:00
committed by GitHub
parent 797ed36eef
commit 9b78b2d5c0
+3 -3
View File
@@ -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)
;
;