-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #655 from bitpredator/dev
chore: bpt_ammujob database update
- Loading branch information
Showing
3 changed files
with
31 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
server-data/resources/[bpt_addons]/bpt_ammujob/localization/bpt_ammujob_it.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
INSERT INTO `addon_account` (name, label, shared) VALUES | ||
('society_ammu', 'Ammu', 1) | ||
; | ||
|
||
INSERT INTO `datastore` (name, label, shared) VALUES | ||
('society_ammu', 'Ammu', 1) | ||
; | ||
|
||
INSERT INTO `addon_inventory` (name, label, shared) VALUES | ||
('society_ammu', 'Ammu', 1) | ||
; | ||
|
||
INSERT INTO `jobs` (name, label) VALUES | ||
('ammu', 'Armeria') | ||
; | ||
|
||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES | ||
('ammu',0,'apprentice','Apprendista',20,'{}','{}'), | ||
('ammu',1,'gunsmith','Armaiolo',40,'{}','{}'), | ||
('ammu',2,'armorychief','Capo Armeria',60,'{}','{}'), | ||
('ammu',3,'deputydirector','Vice direttore',85,'{}','{}'), | ||
('ammu',4,'boss','Direttore',100,'{}','{}') | ||
; |