1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| CREATE TABLE public.sortie (
matricule character varying(7) NOT NULL,
"deces_O_N" character varying(1),
nom character varying(55),
prenom character varying(55),
sexe character varying(50),
date_naissance timestamp without time zone,
ref_grade character varying(14),
echelon_grade character varying(2),
emploi character varying(50),
echelon_emploi character varying(50),
hors_budget character varying(10),
qualite_statutaire character varying(50),
sit_administrative character varying(50),
date_sit_administrative timestamp without time zone,
"libstructFIN" character varying(255),
"libstructRH" character varying(255),
"SAA" character varying(255),
"SAO" character varying(255),
"dirPN" character varying(255),
"libZonDef" character varying(255),
ref_direction character varying(10),
service character varying(90),
departement character varying(255),
ref_sgap character varying(2),
date_depart timestamp without time zone,
ref_motifsortie character varying(15),
observation text,
date_prevision timestamp without time zone,
motif_prevision character varying(50),
mepa03_arret_sign boolean,
mepa03_certif_med boolean,
mepa03_avis_direction boolean,
mepa03_date_debut timestamp without time zone,
mepa03_date_dem timestamp without time zone,
mepa03_date_edit timestamp without time zone,
mepa03_taux numeric(19,4),
mepa08_arret_sign boolean,
mepa08_certif_med boolean,
mepa08_date_debut timestamp without time zone,
mepa08_taux numeric(19,4),
mepa08_date_dem timestamp without time zone,
mepa08_date_edit timestamp without time zone,
retraite_arret_edit boolean,
retraite_date_edit timestamp without time zone,
rapa_date_debut timestamp without time zone,
rapa_certif_scolaire boolean,
rapa_livret_famille boolean,
rapa_arret boolean,
rapa_certif_med boolean,
rapa_date_dem timestamp without time zone,
rapa_date_edit timestamp without time zone,
rapa_taux numeric(19,4),
date_maintien timestamp without time zone,
date_taux_max_pension timestamp without time zone,
pension numeric(19,4),
taux_pension numeric(19,4),
date_dem_pension timestamp without time zone,
"actRC" character varying(3),
surcotisation boolean,
date_transmission_bpai timestamp without time zone,
adresse_rue text,
adresse_codepost character varying(8),
adresse_ville character varying(20),
protelfix character varying(15),
protelmob character varying(15),
promail character varying(150),
persotelfix character varying(15),
persotelmob character varying(15),
persomail character varying(150),
gestionnaire character varying(5)
); |
Partager