Merge pull request #206 from KarmaUnderground/main

Add esx_shops.sql. This table is being used in esx_optionalneeds but …
This commit is contained in:
Esplike
2022-04-11 19:14:46 +01:00
committed by GitHub
+10
View File
@@ -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`)
);