mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 10:18:54 +00:00
ba14cf2832
* Spanish translation implemented * Create es_esx_optionalneeds.sql
12 lines
244 B
SQL
12 lines
244 B
SQL
USE `es_extended`;
|
|
|
|
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
|
|
('beer', 'Cerveza', 1)
|
|
;
|
|
|
|
INSERT INTO `shops` (store, item, price) VALUES
|
|
('TwentyFourSeven', 'beer', 45),
|
|
('RobsLiquor', 'beer', 45),
|
|
('LTDgasoline', 'beer', 45)
|
|
;
|