Files
esx_core/esx_weashops.sql
T
2017-08-17 10:53:08 +02:00

16 lines
334 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)
;