Merge pull request #91 from shortybsd/patch-1

Update esx_shops.sql
This commit is contained in:
Jérémie N'gadi
2020-05-17 11:36:54 +02:00
committed by GitHub
+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)
;
;