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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
RendezVous:
connection: doctrine
tableName: INADEQUATIONRENDEZVOUS
columns:
candidat_id:
type: integer(8)
primary: true
offre_id:
type: integer(8)
primary: true
numtel:
notnull: true
type: string(10)
date_RV1:
notnull: true
type: timestamp(7)
date_RV2:
notnull: true
type: timestamp(7)
date_RV3:
type: timestamp(7)
email:
type: string(255)
relations:
Candidat:
foreignAlias: RendezVouss
Offre:
foreignAlias: RendezVouss
Offre:
connection: doctrine
tableName: INADEQUATIONOFFRE
columns:
id:
type: integer(8)
primary: true
sequence: true
intitule:
notnull: true
type: string(255)
salaire:
notnull: true
type: string(255)
contrat:
notnull: true
type: string(255)
metier:
notnull: true
type: string(255)
descriptif:
notnull: true
type: string(1024)
typehoraire:
notnull: true
type: string(1024)
entreprise_id:
notnull: true
type: integer(8)
adresse_id:
notnull: true
type: integer(8)
habilete_id1:
notnull: true
type: integer(8)
habilete_id2:
notnull: true
type: integer(8)
habilete_id3:
notnull: true
type: integer(8)
valider:
notnull: true
type: string(8)
pourvue:
notnull: true
type: string(8)
supprimer:
notnull: true
type: string(8)
relations:
Entreprise:
foreignAlias: Offres
Adresse:
foreignAlias: Offres
Habilite1:
class: Habilete
local: habilete_id1
foreign: id
foreignAlias: Offres1
Habilite2:
class: Habilete
local: habilete_id2
foreign: id
foreignAlias: Offres2
Habilite3:
class: Habilete
local: habilete_id3
foreign: id
foreignAlias: Offres3
Candidat:
connection: doctrine
tableName: INADEQUATIONCANDIDAT
columns:
id:
type: integer(8)
primary: true
sequence: true
prenom:
notnull: true
type: string(255)
nom:
notnull: true
type: string(255)
login:
notnull: true
type: string(255)
mdp:
notnull: true
type: string(255)
datenaiss:
notnull: true
type: timestamp(7)
email:
notnull: true
type: string(255)
adresse_id:
notnull: true
type: integer(8)
relations:
Adresse:
foreignAlias: Condidats
Offres:
class: Offre
refClass: RendezVous
foreignAlias: Candidats |
Partager