mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 18:28:52 +00:00
feat(sql): update SQL script
This commit is contained in:
+6
-2
@@ -1,15 +1,19 @@
|
||||
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 `licenses` (type, label) VALUES
|
||||
('weapon', "Permis de port d'arme")
|
||||
;
|
||||
|
||||
INSERT INTO `weashops` (name, item, price) VALUES
|
||||
('GunShop','WEAPON_PISTOL',300),
|
||||
('BlackWeashop','WEAPON_PISTOL',500),
|
||||
|
||||
Reference in New Issue
Block a user