mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 16:23:21 +00:00
Fix typo + weapon labels (you need to recreate the SQL table
This commit is contained in:
+3
-4
@@ -6,12 +6,11 @@ CREATE TABLE `weashops` (
|
||||
`name` varchar(255) NOT NULL,
|
||||
`item` varchar(255) NOT NULL,
|
||||
`price` int(11) NOT NULL,
|
||||
`label` varchar(255) NOT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
);
|
||||
|
||||
INSERT INTO `weashops` (name, item, price, label) VALUES
|
||||
('GunShop','WEAPON_Pistol',300, 'pistol'),
|
||||
('blackweashop','WEAPON_Pistol',500, 'pistol')
|
||||
INSERT INTO `weashops` (name, item, price) VALUES
|
||||
('GunShop','WEAPON_PISTOL',300),
|
||||
('BlackWeashop','WEAPON_PISTOL',500)
|
||||
;
|
||||
Reference in New Issue
Block a user