Add missing default job / job_grades

This commit is contained in:
Jérémie N'gadi
2020-05-11 22:48:25 +02:00
parent 515c286e01
commit 9ad9c31b8c
+11
View File
@@ -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');