mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 10:01:28 +00:00
Remove an insert on a table that doesn't exist in esx_shops
This commit is contained in:
@@ -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)
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user