2
0
forked from Wavyzz/dolibarr

NEW Keep a link between user created from recruitment and application

This commit is contained in:
Laurent Destailleur
2023-03-02 15:25:12 +01:00
parent f3a3a8b854
commit 93022a406c
4 changed files with 43 additions and 30 deletions

View File

@@ -93,3 +93,6 @@ ALTER TABLE llx_ecm_files ADD COLUMN share_pass varchar(32) after share;
ALTER TABLE llx_prelevement_demande ADD COLUMN type varchar(12) DEFAULT '';
UPDATE llx_prelevement_demande SET type = 'ban' WHERE ext_payment_id IS NULL AND type = '';
ALTER TABLE llx_recruitment_recruitmentcandidature ADD COLUMN fk_user integer;

View File

@@ -27,6 +27,7 @@ CREATE TABLE llx_recruitment_recruitmentcandidature(
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
fk_user_creat integer NOT NULL,
fk_user_modif integer,
fk_user integer, -- Id of user created from the job application
import_key varchar(14),
model_pdf varchar(255),
status smallint NOT NULL,