From 664f1c41c4060b6b932a5d8c29ac0242b4a868b9 Mon Sep 17 00:00:00 2001 From: manutrix Date: Mon, 11 Apr 2022 12:47:39 -0400 Subject: [PATCH] Add esx_shops.sql. This table is being used in esx_optionalneeds but never created --- [esx_addons]/esx_shops/esx_shops.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 [esx_addons]/esx_shops/esx_shops.sql diff --git a/[esx_addons]/esx_shops/esx_shops.sql b/[esx_addons]/esx_shops/esx_shops.sql new file mode 100644 index 00000000..891ef747 --- /dev/null +++ b/[esx_addons]/esx_shops/esx_shops.sql @@ -0,0 +1,10 @@ +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`) +); \ No newline at end of file