mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 16:23:21 +00:00
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:
@@ -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`)
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user