Add esx_shops.sql. This table is being used in esx_optionalneeds but never created

This commit is contained in:
manutrix
2022-04-11 12:47:39 -04:00
parent 223c8d540d
commit 664f1c41c4
+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`)
);