diff --git a/[esx_addons]/esx_optionalneeds/esx_optionalneeds.sql b/[esx_addons]/esx_optionalneeds/esx_optionalneeds.sql index 15737afc..0c69639c 100644 --- a/[esx_addons]/esx_optionalneeds/esx_optionalneeds.sql +++ b/[esx_addons]/esx_optionalneeds/esx_optionalneeds.sql @@ -1,5 +1,14 @@ 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) ;