esx_optionalneeds/esx_optionalneeds.sql

12 lines
234 B
MySQL
Raw Normal View History

2022-03-01 14:49:08 +00:00
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('beer', 'Bier', 1)
;
INSERT INTO `shops` (store, item, price) VALUES
('TwentyFourSeven', 'beer', 45),
('RobsLiquor', 'beer', 45),
('LTDgasoline', 'beer', 45)
;