Add Localized SQL (EN)

This commit is contained in:
nearbyplayer
2018-08-08 20:32:24 -04:00
parent a77bfbdbb6
commit e1967e5e59
@@ -0,0 +1,16 @@
USE `essentialmode`;
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_realestateagent','Real Estate Company',1)
;
INSERT INTO `jobs` (name, label) VALUES
('realestateagent','Realtor')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('realestateagent',0,'location','Renting Agent',10,'{}','{}'),
('realestateagent',1,'vendeur','Agent',25,'{}','{}'),
('realestateagent',2,'gestion','Management',40,'{}','{}'),
('realestateagent',3,'boss','Broker',0,'{}','{}')
;