mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-02 19:28:52 +00:00
17 lines
536 B
SQL
17 lines
536 B
SQL
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,'{}','{}')
|
|
;
|