Remove an insert on a table that doesn't exist in esx_shops

This commit is contained in:
manutrix
2022-04-14 07:39:29 -04:00
parent f293ef770c
commit d6cd2fa37f
@@ -1,20 +1,5 @@
USE `es_extended`;
CREATE TABLE `shops` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`store` varchar(100) NOT NULL,
`item` varchar(100) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('beer', 'Beer', 1)
;
INSERT INTO `shops` (store, item, price) VALUES
('TwentyFourSeven', 'beer', 45),
('RobsLiquor', 'beer', 45),
('LTDgasoline', 'beer', 45)
;