Files
esx_core/esx_weashops.sql
T
nearbyplayer d95ac08d0a Multi-language support
Updated readme with proper clone link, and moved it to the front directory.
2017-08-15 14:59:46 -04:00

18 lines
336 B
SQL

USE `essentialmode`;
CREATE TABLE `weashops` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`item` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `weashops` (name, item, price) VALUES
('GunShop','WEAPON_Pistol',300),
('blackweashop','WEAPON_Pistol',500)
;