-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql.sql
33 lines (28 loc) · 1.15 KB
/
sql.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_reporter', 'Journaliste', 1)
INSERT INTO `datastore` (name, label, shared) VALUES
('society_reporter', 'Journaliste', 1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_reporter', 'Journaliste', 1)
;
INSERT INTO `jobs` (name, label) VALUES
('reporter', 'Journaliste')
;
INSERT INTO `jobs` (name, label) VALUES
('offreporter', 'Journaliste')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('reporter',0,'recrue','Débutant',12,'{}','{}'),
('reporter',1,'novice','Chef de projet',24,'{}','{}'),
('reporter',2,'experimente','Journaliste',36,'{}','{}'),
('reporter',3,'uber','Co-Patron',48,'{}','{}'),
('reporter',4,'boss','Patron',0,'{}','{}')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('offreporter',0,'recrue','Conges',0,'{}','{}'),
('offreporter',1,'novice','Conges',0,'{}','{}'),
('offreporter',2,'experimente','Conges',0,'{}','{}'),
('offreporter',3,'uber','Conges',0,'{}','{}'),
('offreporter',4,'boss','Conges',0,'{}','{}')
;