mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 18:28:52 +00:00
Add Localized SQL (EN)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
USE `essentialmode`;
|
||||
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_taxi', 'Taxi', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_taxi', 'Taxi', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_taxi', 'Taxi', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('taxi', 'Taxi')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('taxi',0,'recrue','Recruit',12,'{}','{}'),
|
||||
('taxi',1,'novice','Cabby',24,'{}','{}'),
|
||||
('taxi',2,'experimente','Experienced',36,'{}','{}'),
|
||||
('taxi',3,'uber','Uber Cabby',48,'{}','{}'),
|
||||
('taxi',4,'boss','Lead Cabby',0,'{}','{}')
|
||||
;
|
||||
Reference in New Issue
Block a user