mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-03 11:48:53 +00:00
Add missing default job / job_grades
This commit is contained in:
@@ -51,3 +51,14 @@ CREATE TABLE IF NOT EXISTS `users` (
|
||||
PRIMARY KEY (`identifier`),
|
||||
UNIQUE KEY `index_users_phone_number` (`phone_number`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
INSERT INTO `job_grades` VALUES (1,'unemployed',0,'unemployed','Unemployed',200,'{}','{}');
|
||||
|
||||
CREATE TABLE `jobs` (
|
||||
`name` VARCHAR(50) NOT NULL,
|
||||
`label` VARCHAR(50) DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`name`)
|
||||
);
|
||||
|
||||
INSERT INTO `jobs` VALUES ('unemployed','Unemployed');
|
||||
|
||||
Reference in New Issue
Block a user