Installation
- ResourceDownload Link
CREATE TABLE `ebt_applications` (
`identifier` VARCHAR(50) NOT NULL COLLATE 'utf8mb3_general_ci',
`applied_at` TIMESTAMP NULL DEFAULT current_timestamp(),
PRIMARY KEY (`identifier`) USING BTREE
)
COLLATE='utf8mb3_general_ci'
ENGINE=InnoDB
;
INSERT INTO `job_grades` (`id`, `job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES (41, 'socialworker', 0, 'worker', 'Support', 0, '{}', '{}');Last updated