-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.sql
More file actions
2074 lines (1799 loc) · 181 KB
/
db.sql
File metadata and controls
2074 lines (1799 loc) · 181 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.7.24, for Linux (x86_64)
--
-- Host: localhost Database: murazFinal
-- ------------------------------------------------------
-- Server version 5.7.24-0ubuntu0.18.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `activites`
--
DROP TABLE IF EXISTS `activites`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `activites` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`projet_id` int(10) unsigned NOT NULL,
`contenu` text COLLATE utf8mb4_unicode_ci NOT NULL,
`dateActivite` datetime NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `activites_projet_id_foreign` (`projet_id`),
CONSTRAINT `activites_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `activites`
--
LOCK TABLES `activites` WRITE;
/*!40000 ALTER TABLE `activites` DISABLE KEYS */;
/*!40000 ALTER TABLE `activites` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `associations`
--
DROP TABLE IF EXISTS `associations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `associations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`numeroPv` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`nomAssociation` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`typeAssociation` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`but` text COLLATE utf8mb4_unicode_ci,
`corpsProffesorale` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `associations`
--
LOCK TABLES `associations` WRITE;
/*!40000 ALTER TABLE `associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `associe_externes`
--
DROP TABLE IF EXISTS `associe_externes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `associe_externes` (
`personne_id` int(10) unsigned NOT NULL,
`equipe_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`equipe_id`),
KEY `associe_externes_equipe_id_foreign` (`equipe_id`),
CONSTRAINT `associe_externes_equipe_id_foreign` FOREIGN KEY (`equipe_id`) REFERENCES `equipes` (`id`),
CONSTRAINT `associe_externes_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_externes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `associe_externes`
--
LOCK TABLES `associe_externes` WRITE;
/*!40000 ALTER TABLE `associe_externes` DISABLE KEYS */;
/*!40000 ALTER TABLE `associe_externes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `associe_internes`
--
DROP TABLE IF EXISTS `associe_internes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `associe_internes` (
`personne_id` int(10) unsigned NOT NULL,
`equipe_id` int(10) unsigned NOT NULL,
`projet_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`equipe_id`),
KEY `associe_internes_equipe_id_foreign` (`equipe_id`),
CONSTRAINT `associe_internes_equipe_id_foreign` FOREIGN KEY (`equipe_id`) REFERENCES `equipes` (`id`),
CONSTRAINT `associe_internes_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `associe_internes`
--
LOCK TABLES `associe_internes` WRITE;
/*!40000 ALTER TABLE `associe_internes` DISABLE KEYS */;
/*!40000 ALTER TABLE `associe_internes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bourses`
--
DROP TABLE IF EXISTS `bourses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bourses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`projet_id` int(10) unsigned NOT NULL,
`personne_id` int(10) unsigned NOT NULL,
`libelletBourse` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bourses_projet_id_foreign` (`projet_id`),
KEY `bourses_personne_id_foreign` (`personne_id`),
CONSTRAINT `bourses_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`),
CONSTRAINT `bourses_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bourses`
--
LOCK TABLES `bourses` WRITE;
/*!40000 ALTER TABLE `bourses` DISABLE KEYS */;
/*!40000 ALTER TABLE `bourses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `co_investigateur_externes`
--
DROP TABLE IF EXISTS `co_investigateur_externes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `co_investigateur_externes` (
`personne_id` int(10) unsigned NOT NULL,
`projet_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`projet_id`),
KEY `co_investigateur_externes_projet_id_foreign` (`projet_id`),
CONSTRAINT `co_investigateur_externes_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_externes` (`id`),
CONSTRAINT `co_investigateur_externes_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `co_investigateur_externes`
--
LOCK TABLES `co_investigateur_externes` WRITE;
/*!40000 ALTER TABLE `co_investigateur_externes` DISABLE KEYS */;
/*!40000 ALTER TABLE `co_investigateur_externes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `co_investigateur_internes`
--
DROP TABLE IF EXISTS `co_investigateur_internes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `co_investigateur_internes` (
`personne_id` int(10) unsigned NOT NULL,
`projet_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`projet_id`),
KEY `co_investigateur_internes_projet_id_foreign` (`projet_id`),
CONSTRAINT `co_investigateur_internes_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`),
CONSTRAINT `co_investigateur_internes_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `co_investigateur_internes`
--
LOCK TABLES `co_investigateur_internes` WRITE;
/*!40000 ALTER TABLE `co_investigateur_internes` DISABLE KEYS */;
INSERT INTO `co_investigateur_internes` VALUES (4,2,NULL,NULL);
/*!40000 ALTER TABLE `co_investigateur_internes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `departements`
--
DROP TABLE IF EXISTS `departements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `departements` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`direction_id` int(10) unsigned NOT NULL,
`nomDepartement` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`descriptionDepartement` text COLLATE utf8mb4_unicode_ci NOT NULL,
`objectifDepartement` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `departements_direction_id_foreign` (`direction_id`),
CONSTRAINT `departements_direction_id_foreign` FOREIGN KEY (`direction_id`) REFERENCES `directions` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `departements`
--
LOCK TABLES `departements` WRITE;
/*!40000 ALTER TABLE `departements` DISABLE KEYS */;
INSERT INTO `departements` VALUES (1,1,'Departement des Sciences Biomédiadicales','Le Département des Sciences Biomédicales (DSB) est né de l’organisation de la recherche au Centre MURAZ pour prendre en compte les suggestions du Conseil Scientifique International tenu en novembre 2016. Pour rappel, les suggestions qui avaient été faites par le Conseil Scientifique en 2016 étaient entre autre de faire en sorte que tous les plateaux techniques soient regroupés au sein de ce Département. Après plusieurs rencontres et concertations internes à travers le Collège des Chercheurs notamment, il a été convenu de façon consensuelle de sortir l’équipe de Biologie Clinique du Département de Recherche Clinique (DRC) pour la placer dans le DSB avec l’appellation de Laboratoire de Biologie Clinique (LBC).','Si l’on globalise cet ensemble, on peut dire que le champ de recherche du DSB est très large et comprend la recherche fondamentale et translationnelle de laboratoire. Il s’agit d’un regroupement horizontal de tous les laboratoires de recherche qui mènent des projets de recherche en rapport avec les maladies transmissibles comprenant les maladies à transmission vectorielles et les maladies de type bactérien et viral et les maladies non transmissibles. Ces laboratoires ont été créés pour répondre aux besoins prioritaires des populations du Burkina Faso dans le domaine de la recherche et de la biologie médicale. A ce titre, le Département est un organe de coordination de la recherche menée au sein des laboratoires de recherche.',NULL,NULL),(2,1,'Departement de Recherche clinique ','En 2015 le Centre MURAZ a élaboré un nouvel organigramme scientifique. Dans cette nouvelle organisation, le champ de recherche du Département de Recherche Clinique (DRC), couvre : les essais cliniques, l’analyse décisionnelle médicale et les méthodes et outils de recherche clinique. Le DRC comprend deux (2) équipes de recherche ','L’objectif du DRC est d’obtenir à court terme, une meilleure gestion de ces ressources humaines et une meilleure organisation au quotidien du travail, pour améliorer sa productivité dans les différents domaines que sont la recherche (Grants et articles scientifiques), la formation et l’expertise. Cela permettra également une meilleure implication du Département dans le suivi de l’ensemble des essais cliniques hébergés au Centre MURAZ, à travers la rédaction et la mise en œuvre d’un plan de monitoring pour chacun de ces essais.',NULL,NULL),(3,1,'Departement de Santé Publique','Le DSP couvre un large champ de thématiques de recherches dans une perspective transversale portant sur les maladies transmissibles, non transmissibles et les problèmes globaux de santé communautaire et publique. La force principale du Département est sa diversité, sa transversalité et sa complémentarité. En effet, l’ensemble des chercheurs du Département forme une task-force susceptible de répondre aux questions de recherche, d’expertise et de formation en rapport avec les problèmes prioritaires de santé publique du pays et de la sous-région. La faiblesse du département réside dans l’insuffisance des effectifs au sein de toutes les équipes et le faible financement dans certaines thématiques comme l’accidentologie.','La perspective du Département est de développer et d’opérationnaliser des contrats plans dans les domaines de la santé environnementale, de l’accidentologie, de la santé communautaire, des politiques publiques de santé en matière de financement, d’équité et de prise en charge des groupes spécifiques.',NULL,NULL);
/*!40000 ALTER TABLE `departements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_chef_departement`
--
DROP TABLE IF EXISTS `detail_chef_departement`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_chef_departement` (
`personne_id` int(10) unsigned NOT NULL,
`departement_id` int(10) unsigned NOT NULL,
`debutMandat` datetime NOT NULL,
`finMandat` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`departement_id`),
KEY `detail_chef_departement_departement_id_foreign` (`departement_id`),
CONSTRAINT `detail_chef_departement_departement_id_foreign` FOREIGN KEY (`departement_id`) REFERENCES `departements` (`id`),
CONSTRAINT `detail_chef_departement_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_chef_departement`
--
LOCK TABLES `detail_chef_departement` WRITE;
/*!40000 ALTER TABLE `detail_chef_departement` DISABLE KEYS */;
INSERT INTO `detail_chef_departement` VALUES (1,1,'2019-01-23 01:03:11',NULL,NULL,NULL);
/*!40000 ALTER TABLE `detail_chef_departement` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_chef_direction`
--
DROP TABLE IF EXISTS `detail_chef_direction`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_chef_direction` (
`personne_id` int(10) unsigned NOT NULL,
`direction_id` int(10) unsigned NOT NULL,
`debutMandat` datetime NOT NULL,
`finMandat` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`direction_id`),
KEY `detail_chef_direction_direction_id_foreign` (`direction_id`),
CONSTRAINT `detail_chef_direction_direction_id_foreign` FOREIGN KEY (`direction_id`) REFERENCES `directions` (`id`),
CONSTRAINT `detail_chef_direction_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_chef_direction`
--
LOCK TABLES `detail_chef_direction` WRITE;
/*!40000 ALTER TABLE `detail_chef_direction` DISABLE KEYS */;
/*!40000 ALTER TABLE `detail_chef_direction` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_chef_equipe`
--
DROP TABLE IF EXISTS `detail_chef_equipe`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_chef_equipe` (
`personne_id` int(10) unsigned NOT NULL,
`equipe_id` int(10) unsigned NOT NULL,
`debutMandat` datetime NOT NULL,
`finMandat` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`equipe_id`),
KEY `detail_chef_equipe_equipe_id_foreign` (`equipe_id`),
CONSTRAINT `detail_chef_equipe_equipe_id_foreign` FOREIGN KEY (`equipe_id`) REFERENCES `equipes` (`id`),
CONSTRAINT `detail_chef_equipe_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_chef_equipe`
--
LOCK TABLES `detail_chef_equipe` WRITE;
/*!40000 ALTER TABLE `detail_chef_equipe` DISABLE KEYS */;
/*!40000 ALTER TABLE `detail_chef_equipe` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_chef_laboratoire`
--
DROP TABLE IF EXISTS `detail_chef_laboratoire`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_chef_laboratoire` (
`personne_id` int(10) unsigned NOT NULL,
`laboratoire_id` int(10) unsigned NOT NULL,
`debutMandat` datetime NOT NULL,
`finMandat` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`laboratoire_id`),
KEY `detail_chef_laboratoire_laboratoire_id_foreign` (`laboratoire_id`),
CONSTRAINT `detail_chef_laboratoire_laboratoire_id_foreign` FOREIGN KEY (`laboratoire_id`) REFERENCES `laboratoires` (`id`),
CONSTRAINT `detail_chef_laboratoire_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_chef_laboratoire`
--
LOCK TABLES `detail_chef_laboratoire` WRITE;
/*!40000 ALTER TABLE `detail_chef_laboratoire` DISABLE KEYS */;
/*!40000 ALTER TABLE `detail_chef_laboratoire` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_chef_unite`
--
DROP TABLE IF EXISTS `detail_chef_unite`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_chef_unite` (
`personne_id` int(10) unsigned NOT NULL,
`unite_id` int(10) unsigned NOT NULL,
`debutMandat` datetime NOT NULL,
`finMandat` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`),
KEY `detail_chef_unite_unite_id_foreign` (`unite_id`),
CONSTRAINT `detail_chef_unite_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`),
CONSTRAINT `detail_chef_unite_unite_id_foreign` FOREIGN KEY (`unite_id`) REFERENCES `unite_de_recherches` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_chef_unite`
--
LOCK TABLES `detail_chef_unite` WRITE;
/*!40000 ALTER TABLE `detail_chef_unite` DISABLE KEYS */;
/*!40000 ALTER TABLE `detail_chef_unite` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_co_auteur`
--
DROP TABLE IF EXISTS `detail_co_auteur`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_co_auteur` (
`personne_id` int(10) unsigned NOT NULL,
`publication_id` int(10) unsigned NOT NULL,
`ordreDimplication` int(11) NOT NULL,
`descriptionParticipation` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`publication_id`),
KEY `detail_co_auteur_publication_id_foreign` (`publication_id`),
CONSTRAINT `detail_co_auteur_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`),
CONSTRAINT `detail_co_auteur_publication_id_foreign` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_co_auteur`
--
LOCK TABLES `detail_co_auteur` WRITE;
/*!40000 ALTER TABLE `detail_co_auteur` DISABLE KEYS */;
INSERT INTO `detail_co_auteur` VALUES (1,1,1,'il receuillis toutes les informations a Bobo',NULL,NULL),(5,6,2,'Il a gérer les calculs statistique et probabilistes',NULL,NULL),(5,7,2,'Il a réquisitionner les échantillons des souches qui ont permis de mettre en œuvre le systeme',NULL,NULL),(9,3,2,'Il a realisé les prevelements pour l\"etude',NULL,NULL),(11,5,1,'Il a prelever les valeurs',NULL,NULL),(11,8,2,'Il a gerer le recueil des valeurs',NULL,NULL),(36,6,4,'Il a été beaucoup utilie dans la compréhension des souches',NULL,NULL),(44,6,3,'Il a effectué les voyages de recueil d\'indices dans les zones',NULL,NULL),(145,4,1,'Il a realisé les recueil de valuers analysées',NULL,NULL);
/*!40000 ALTER TABLE `detail_co_auteur` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_diplome_externe`
--
DROP TABLE IF EXISTS `detail_diplome_externe`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_diplome_externe` (
`personne_id` int(10) unsigned NOT NULL,
`typeDiplome_id` int(10) unsigned NOT NULL,
`numeroDiplome` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`dateDoptention` datetime NOT NULL,
`mention` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`),
KEY `detail_diplome_externe_typediplome_id_foreign` (`typeDiplome_id`),
CONSTRAINT `detail_diplome_externe_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_externes` (`id`),
CONSTRAINT `detail_diplome_externe_typediplome_id_foreign` FOREIGN KEY (`typeDiplome_id`) REFERENCES `type_diplomes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_diplome_externe`
--
LOCK TABLES `detail_diplome_externe` WRITE;
/*!40000 ALTER TABLE `detail_diplome_externe` DISABLE KEYS */;
/*!40000 ALTER TABLE `detail_diplome_externe` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_diplome_interne`
--
DROP TABLE IF EXISTS `detail_diplome_interne`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_diplome_interne` (
`personne_id` int(10) unsigned NOT NULL,
`typeDiplome_id` int(10) unsigned NOT NULL,
`numeroDiplome` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`dateDoptention` datetime NOT NULL,
`mention` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`typeDiplome_id`),
KEY `detail_diplome_interne_typediplome_id_foreign` (`typeDiplome_id`),
CONSTRAINT `detail_diplome_interne_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`),
CONSTRAINT `detail_diplome_interne_typediplome_id_foreign` FOREIGN KEY (`typeDiplome_id`) REFERENCES `type_diplomes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_diplome_interne`
--
LOCK TABLES `detail_diplome_interne` WRITE;
/*!40000 ALTER TABLE `detail_diplome_interne` DISABLE KEYS */;
INSERT INTO `detail_diplome_interne` VALUES (1,1,'BEPC-20155','2018-07-04 00:00:00','',NULL,NULL),(1,2,'BAC-1212','2015-06-10 00:00:00','',NULL,NULL),(2,1,'BEPC-201556','2018-01-01 00:00:00','',NULL,NULL),(204,1,'12125','1995-01-03 00:00:00','',NULL,NULL),(204,2,'14145','1999-01-13 00:00:00','',NULL,NULL),(204,4,'121521','2002-11-05 00:00:00','',NULL,NULL),(204,5,'151512','2004-02-03 00:00:00','',NULL,NULL),(204,6,'PHD-15152','2008-03-02 00:00:00','',NULL,NULL);
/*!40000 ALTER TABLE `detail_diplome_interne` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_partenariat_financier`
--
DROP TABLE IF EXISTS `detail_partenariat_financier`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_partenariat_financier` (
`institution_id` int(10) unsigned NOT NULL,
`projet_id` int(10) unsigned NOT NULL,
`volumeProjetFinance` int(11) NOT NULL,
`anneeFinancementProjet` year(4) NOT NULL,
PRIMARY KEY (`institution_id`,`projet_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_partenariat_financier`
--
LOCK TABLES `detail_partenariat_financier` WRITE;
/*!40000 ALTER TABLE `detail_partenariat_financier` DISABLE KEYS */;
/*!40000 ALTER TABLE `detail_partenariat_financier` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_partenariat_technique`
--
DROP TABLE IF EXISTS `detail_partenariat_technique`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_partenariat_technique` (
`institution_id` int(10) unsigned NOT NULL,
`projet_id` int(10) unsigned NOT NULL,
`descriptionPartenariat` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`institution_id`),
KEY `detail_partenariat_technique_projet_id_foreign` (`projet_id`),
CONSTRAINT `detail_partenariat_technique_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`id`),
CONSTRAINT `detail_partenariat_technique_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_partenariat_technique`
--
LOCK TABLES `detail_partenariat_technique` WRITE;
/*!40000 ALTER TABLE `detail_partenariat_technique` DISABLE KEYS */;
/*!40000 ALTER TABLE `detail_partenariat_technique` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `detail_statut_projet`
--
DROP TABLE IF EXISTS `detail_statut_projet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detail_statut_projet` (
`statut_id` int(10) unsigned NOT NULL,
`projet_id` int(10) unsigned NOT NULL,
`debutStatut` datetime DEFAULT NULL,
`finStatut` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`statut_id`,`projet_id`),
KEY `detail_statut_projet_projet_id_foreign` (`projet_id`),
CONSTRAINT `detail_statut_projet_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`),
CONSTRAINT `detail_statut_projet_statut_id_foreign` FOREIGN KEY (`statut_id`) REFERENCES `statuts` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detail_statut_projet`
--
LOCK TABLES `detail_statut_projet` WRITE;
/*!40000 ALTER TABLE `detail_statut_projet` DISABLE KEYS */;
INSERT INTO `detail_statut_projet` VALUES (1,1,'2019-01-24 13:17:05',NULL,NULL,NULL),(1,2,'2019-01-24 13:17:05',NULL,NULL,NULL);
/*!40000 ALTER TABLE `detail_statut_projet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directions`
--
DROP TABLE IF EXISTS `directions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nomDirection` varchar(54) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directions`
--
LOCK TABLES `directions` WRITE;
/*!40000 ALTER TABLE `directions` DISABLE KEYS */;
INSERT INTO `directions` VALUES (1,'Direction Scientifique',NULL,NULL);
/*!40000 ALTER TABLE `directions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `equipements_acquis`
--
DROP TABLE IF EXISTS `equipements_acquis`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `equipements_acquis` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`projet_id` int(10) unsigned NOT NULL,
`typeEquipement` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`prix` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `equipements_acquis_projet_id_foreign` (`projet_id`),
CONSTRAINT `equipements_acquis_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `equipements_acquis`
--
LOCK TABLES `equipements_acquis` WRITE;
/*!40000 ALTER TABLE `equipements_acquis` DISABLE KEYS */;
/*!40000 ALTER TABLE `equipements_acquis` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `equipes`
--
DROP TABLE IF EXISTS `equipes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `equipes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`departement_id` int(10) unsigned NOT NULL,
`nomEquipe` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`descriptionEquipe` text COLLATE utf8mb4_unicode_ci NOT NULL,
`objectifEquipe` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `equipes_departement_id_foreign` (`departement_id`),
CONSTRAINT `equipes_departement_id_foreign` FOREIGN KEY (`departement_id`) REFERENCES `departements` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `equipes`
--
LOCK TABLES `equipes` WRITE;
/*!40000 ALTER TABLE `equipes` DISABLE KEYS */;
INSERT INTO `equipes` VALUES (1,2,'L’équipe des essais cliniques (EEC)','L\'equipe est chargée de la coordination, du monitoring et de la mise en œuvre selon les standards internationaux, de l’ensemble des essais cliniques hébergés au Centre MURAZ.','Vero debitis voluptates nemo. Et ea consequuntur voluptatem ad. Laboriosam aperiam architecto molestiae quos error quia ullam tenetur. Officiis sequi sed reprehenderit explicabo fuga.',NULL,NULL),(2,2,'Equipe médicale','est chargée de l’organisation et de la dispensation des soins offerts à la population dans les cliniques du Centre MURAZ, et de la recherche sur l’analyse décisionnelle médicale, en collaboration avec les chercheurs des différents Centres de Santé du Burkina.','Dolor fugit rerum expedita enim. Autem vitae ipsa non sed.',NULL,NULL),(3,3,'Equipe Politiques et Système de Santé (EPSS)','Voluptas voluptatum enim laboriosam quo. Sapiente earum alias tenetur distinctio animi non repudiandae et. Dolores maiores laudantium rerum. Dolor esse qui dicta voluptatem.','Quisquam deserunt exercitationem et officia eligendi. Magnam sed amet nihil voluptate. Non possimus repellat nesciunt sed quia. Odit beatae quidem velit aliquam enim ea possimus.',NULL,NULL),(4,3,'Equipe Santé Environnementale, Maladies Chroniques et Nutrition (ESEMCN)','Facilis nam quidem repellendus harum id. Ea laboriosam at veritatis. Voluptates illo quaerat quibusdam quod reprehenderit sequi delectus.','Vero sed suscipit officia voluptatem laborum natus. Et nihil optio quo rerum.',NULL,NULL),(5,3,'Equipe Santé de la Mère et de l’Enfant (ESME)','Fugiat exercitationem sint et distinctio quaerat. Quia consequuntur iure necessitatibus voluptatum atque tempore non ipsum. Odio iusto sit at laborum.','Voluptatum quisquam quia enim dolorem eos perspiciatis eos. Porro ut eius rerum. Nisi exercitationem fuga eius iste iure consectetur fugit.',NULL,NULL),(6,3,'Equipe Sociétés et Santé (ESS)','Porro temporibus facere voluptas molestiae repellat. Non qui et eos. Unde ut quae impedit est.','Fugiat enim ut iste aliquam adipisci labore harum aut. Ut molestias quae itaque. Reiciendis omnis vitae qui sint temporibus. Ullam et in quasi nesciunt omnis et quis.',NULL,NULL);
/*!40000 ALTER TABLE `equipes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `evenements`
--
DROP TABLE IF EXISTS `evenements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `evenements` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`libelleEvenement` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`dateFin` datetime NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `evenements`
--
LOCK TABLES `evenements` WRITE;
/*!40000 ALTER TABLE `evenements` DISABLE KEYS */;
/*!40000 ALTER TABLE `evenements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `examens`
--
DROP TABLE IF EXISTS `examens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `examens` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`libelleExamen` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `examens`
--
LOCK TABLES `examens` WRITE;
/*!40000 ALTER TABLE `examens` DISABLE KEYS */;
/*!40000 ALTER TABLE `examens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiences_professionnelles`
--
DROP TABLE IF EXISTS `experiences_professionnelles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiences_professionnelles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`societe_id` int(10) unsigned DEFAULT NULL,
`personne_id` int(10) unsigned NOT NULL,
`posteOccupe` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`DebutExperience` datetime DEFAULT NULL,
`FinExperience` datetime DEFAULT NULL,
`pays` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `experiences_professionnelles_personne_id_foreign` (`personne_id`),
KEY `experiences_professionnelles_societe_id_foreign` (`societe_id`),
CONSTRAINT `experiences_professionnelles_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`),
CONSTRAINT `experiences_professionnelles_societe_id_foreign` FOREIGN KEY (`societe_id`) REFERENCES `societes` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiences_professionnelles`
--
LOCK TABLES `experiences_professionnelles` WRITE;
/*!40000 ALTER TABLE `experiences_professionnelles` DISABLE KEYS */;
INSERT INTO `experiences_professionnelles` VALUES (1,NULL,204,'Attaché de recherche','J\'ai autre fois été attaché de recherche au CIRDES ou j\'ai traivailler sur les souches de la maladie myopathique','2004-01-06 00:00:00','2006-03-14 00:00:00','Burkina Faso, Bobo Dioulasso','2019-01-28 02:54:12','2019-01-28 02:54:12'),(2,NULL,204,'Chargé de recherche','J\'ai été chargé de recherche au niveau au Centre de MAtroukou ou j\'ai établi la liste des agents pathogènes du maïs','2005-02-08 00:00:00','2006-02-22 00:00:00','Burkina Faso, Bobo Dioulasso','2019-01-28 02:58:10','2019-01-28 02:58:10');
/*!40000 ALTER TABLE `experiences_professionnelles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiences_specifiques`
--
DROP TABLE IF EXISTS `experiences_specifiques`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiences_specifiques` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`personne_id` int(10) unsigned NOT NULL,
`resume` text COLLATE utf8mb4_unicode_ci NOT NULL,
`dateFinExperience` datetime NOT NULL,
`pays` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `experiences_specifiques_personne_id_foreign` (`personne_id`),
CONSTRAINT `experiences_specifiques_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiences_specifiques`
--
LOCK TABLES `experiences_specifiques` WRITE;
/*!40000 ALTER TABLE `experiences_specifiques` DISABLE KEYS */;
/*!40000 ALTER TABLE `experiences_specifiques` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `formations_academiques`
--
DROP TABLE IF EXISTS `formations_academiques`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `formations_academiques` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`personne_id` int(10) unsigned NOT NULL,
`nomFormationAcademique` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`dateFormationAcademique` datetime NOT NULL,
`lieuFormationAcademique` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `formations_academiques_personne_id_foreign` (`personne_id`),
CONSTRAINT `formations_academiques_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `formations_academiques`
--
LOCK TABLES `formations_academiques` WRITE;
/*!40000 ALTER TABLE `formations_academiques` DISABLE KEYS */;
INSERT INTO `formations_academiques` VALUES (1,204,'Cours de d\'angrimologie veserale','2011-12-21 00:00:00','Université Polytechnique de Bobo','2019-01-28 03:00:29','2019-01-28 03:00:29');
/*!40000 ALTER TABLE `formations_academiques` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `formations_en_cours`
--
DROP TABLE IF EXISTS `formations_en_cours`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `formations_en_cours` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`typeFormationEnCours_id` int(10) unsigned NOT NULL,
`libelleFormation` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
`debut` datetime NOT NULL,
`lieuFormation` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
`personne_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `formations_en_cours_typeformationencours_id_foreign` (`typeFormationEnCours_id`),
KEY `formations_en_cours_personne_id_foreign` (`personne_id`),
CONSTRAINT `formations_en_cours_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_internes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `formations_en_cours_typeformationencours_id_foreign` FOREIGN KEY (`typeFormationEnCours_id`) REFERENCES `type_formation_en_cours` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `formations_en_cours`
--
LOCK TABLES `formations_en_cours` WRITE;
/*!40000 ALTER TABLE `formations_en_cours` DISABLE KEYS */;
/*!40000 ALTER TABLE `formations_en_cours` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `idees_de_projet`
--
DROP TABLE IF EXISTS `idees_de_projet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `idees_de_projet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`institutionSouhaite_id` int(10) unsigned DEFAULT NULL,
`intituleIdee` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`institutionProposeur_id` int(10) unsigned DEFAULT NULL,
`projet_id` int(10) unsigned DEFAULT NULL,
`personneinterne_id` int(10) unsigned DEFAULT NULL,
`personneexterne_id` int(10) unsigned DEFAULT NULL,
`cheminProtocole` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`soumis` tinyint(1) NOT NULL DEFAULT '0',
`dateSoumission` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idees_de_projet_projet_id_foreign` (`projet_id`),
KEY `idees_de_projet_institutionproposeur_id_foreign` (`institutionProposeur_id`),
KEY `idees_de_projet_institutionsouhaite_id_foreign` (`institutionSouhaite_id`),
KEY `idees_de_projet_personneinterne_id_foreign` (`personneinterne_id`),
KEY `idees_de_projet_personneexterne_id_foreign` (`personneexterne_id`),
CONSTRAINT `idees_de_projet_institutionproposeur_id_foreign` FOREIGN KEY (`institutionProposeur_id`) REFERENCES `institutions` (`id`),
CONSTRAINT `idees_de_projet_institutionsouhaite_id_foreign` FOREIGN KEY (`institutionSouhaite_id`) REFERENCES `institutions` (`id`),
CONSTRAINT `idees_de_projet_personneexterne_id_foreign` FOREIGN KEY (`personneexterne_id`) REFERENCES `personne_externes` (`id`),
CONSTRAINT `idees_de_projet_personneinterne_id_foreign` FOREIGN KEY (`personneinterne_id`) REFERENCES `personne_internes` (`id`),
CONSTRAINT `idees_de_projet_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `idees_de_projet`
--
LOCK TABLES `idees_de_projet` WRITE;
/*!40000 ALTER TABLE `idees_de_projet` DISABLE KEYS */;
/*!40000 ALTER TABLE `idees_de_projet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `images`
--
DROP TABLE IF EXISTS `images`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `images` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`evenement_id` int(10) unsigned NOT NULL,
`cheminImage` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
`descriptionImage` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `images_evenement_id_foreign` (`evenement_id`),
CONSTRAINT `images_evenement_id_foreign` FOREIGN KEY (`evenement_id`) REFERENCES `evenements` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `images`
--
LOCK TABLES `images` WRITE;
/*!40000 ALTER TABLE `images` DISABLE KEYS */;
/*!40000 ALTER TABLE `images` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `infos_examens`
--
DROP TABLE IF EXISTS `infos_examens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `infos_examens` (
`section_id` int(10) unsigned NOT NULL,
`examen_id` int(10) unsigned NOT NULL,
`anneeExamen` year(4) NOT NULL,
`nombreExamen` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
KEY `infos_examens_examen_id_foreign` (`examen_id`),
KEY `infos_examens_section_id_foreign` (`section_id`),
CONSTRAINT `infos_examens_examen_id_foreign` FOREIGN KEY (`examen_id`) REFERENCES `examens` (`id`),
CONSTRAINT `infos_examens_section_id_foreign` FOREIGN KEY (`section_id`) REFERENCES `sections` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `infos_examens`
--
LOCK TABLES `infos_examens` WRITE;
/*!40000 ALTER TABLE `infos_examens` DISABLE KEYS */;
/*!40000 ALTER TABLE `infos_examens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `institutions`
--
DROP TABLE IF EXISTS `institutions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `institutions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`typeInstitution_id` int(10) unsigned NOT NULL,
`nomInstitution` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`emailInstitution` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`adresseInstitution` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`paysInstitution` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `institutions_typeinstitution_id_foreign` (`typeInstitution_id`),
CONSTRAINT `institutions_typeinstitution_id_foreign` FOREIGN KEY (`typeInstitution_id`) REFERENCES `type_institutions` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `institutions`
--
LOCK TABLES `institutions` WRITE;
/*!40000 ALTER TABLE `institutions` DISABLE KEYS */;
INSERT INTO `institutions` VALUES (1,4,'Walter-Jones','bborer@gmail.com','736 Hessel Corner Apt. 559\nSouth Madalynchester, WA 21451','Andorra',NULL,NULL),(2,4,'Beier Inc','misty.rowe@kub.com','614 Lela Crossroad\nRunolfssonview, WY 44557','Saint Pierre and Miquelon',NULL,NULL),(3,4,'Effertz Ltd','mkozey@gmail.com','4076 Ferry Hills\nNorth Sofiaville, VT 68860-3438','Jamaica',NULL,NULL),(4,4,'Harris, Jacobs and Prohaska','howe.doug@krajcik.org','86174 VonRueden Rapids\nCarrollmouth, NC 07218','Myanmar',NULL,NULL),(5,1,'Schmeler LLC','leilani.little@mcclure.com','32746 Fahey Fords Apt. 264\nNew Frankiebury, CO 42196','South Georgia and the South Sandwich Islands',NULL,NULL),(6,1,'Moore Group','muriel.littel@gmail.com','789 Stewart Common Apt. 630\nNorth Angus, NV 19046-9337','Comoros',NULL,NULL),(7,4,'Hessel Inc','pdavis@koepp.com','7053 Melvina Trail\nEast Verliebury, NV 11553-9203','Marshall Islands',NULL,NULL),(8,1,'Bednar, Sawayn and Jenkins','alphonso.waters@yahoo.com','232 Jeremie Throughway Apt. 993\nDougberg, HI 97467','Bahamas',NULL,NULL),(9,4,'Jacobi-Dach','mable14@yahoo.com','582 Abshire Dale\nNew Sageshire, WA 74706','Andorra',NULL,NULL),(10,1,'Witting-Miller','phodkiewicz@breitenberg.com','8533 Paucek Shores Suite 278\nSouth Roslyn, NY 37809','United States Minor Outlying Islands',NULL,NULL),(11,4,'Goyette-Parker','glover.dane@yahoo.com','96939 Gaylord Pine Apt. 333\nNorth Orrinchester, SC 53361','Slovakia (Slovak Republic)',NULL,NULL),(12,3,'Fay, Ziemann and Wintheiser','dblock@rosenbaum.biz','979 Cortney Summit Suite 462\nPort Erwinland, OH 88864','Cuba',NULL,NULL),(13,4,'Gerlach, Pollich and Schaefer','helena69@kreiger.info','6007 Cara Fall Suite 939\nWest Ashtyn, UT 47864','Netherlands',NULL,NULL),(14,1,'Schmeler, Collier and Gibson','georgette.hayes@weimann.net','1466 Huels Parkway\nKubland, SC 91701-1044','Panama',NULL,NULL),(15,2,'Kuhic, Borer and Powlowski','arlene07@strosin.com','127 Leanne Avenue\nWest Kareemshire, MN 98356','Kenya',NULL,NULL),(16,1,'Casper, Konopelski and Pouros','karianne80@oconnell.com','7740 Dickinson Stream\nLake Delphiafurt, ID 56231-8389','Venezuela',NULL,NULL),(17,1,'Ondricka, Gleason and Herzog','runolfsson.bill@yahoo.com','4226 Maurine Gardens\nPort Easterland, ID 90120-5984','Dominica',NULL,NULL),(18,1,'Padberg, Simonis and Welch','hannah.fahey@stehr.com','348 Reichel Fords\nEast Helmermouth, NV 52111-5803','Uruguay',NULL,NULL),(19,4,'Heidenreich, Funk and Hirthe','uspencer@hotmail.com','82150 Mercedes Forges\nNew Percivalburgh, VA 80477','Poland',NULL,NULL),(20,3,'Dickinson Group','gebert@hartmann.com','5182 Dariana Garden Suite 314\nAaliyahland, MS 86094-9681','Dominican Republic',NULL,NULL),(21,3,'Hammes-Muller','lavern28@runolfsdottir.com','26572 Laverna Burgs\nPort Monroeside, VA 13193-5171','Algeria',NULL,NULL),(22,2,'Pollich LLC','noemi31@baumbach.org','39286 Howard Haven Suite 307\nWest Brennaburgh, WI 75524-8028','Ukraine',NULL,NULL),(23,2,'Schaden-Bogisich','weissnat.oran@yahoo.com','250 Ines Glens\nStrosinmouth, DC 70699','Indonesia',NULL,NULL),(24,4,'Herzog-Jacobs','uohara@gmail.com','1725 Gaylord Lock Suite 306\nSchillerview, TN 90255-6801','Mongolia',NULL,NULL),(25,4,'Nader-Klein','juana31@hotmail.com','186 Wiza Park Apt. 828\nNorth Jermeyburgh, KS 67802-9410','Kuwait',NULL,NULL),(26,2,'Kuphal Inc','macy84@gmail.com','71512 Cartwright Prairie Apt. 056\nSouth Kelsiview, SD 07562-9173','Venezuela',NULL,NULL),(27,3,'Zulauf LLC','americo54@roob.biz','42683 Priscilla Falls Suite 369\nEast Lydastad, FL 66313-4576','Qatar',NULL,NULL),(28,2,'Reichel-Mosciski','snader@dare.com','936 Haag Squares\nSouth Paigeville, LA 78170-4072','Macao',NULL,NULL),(29,3,'Ratke-Zboncak','pacocha.mozelle@hotmail.com','75642 Quincy Fords\nRobelview, MO 03361','Haiti',NULL,NULL),(30,4,'Halvorson-Kunze','dsanford@schuster.biz','460 Renner Shores\nNorth Retha, AK 92143-0547','Libyan Arab Jamahiriya',NULL,NULL);
/*!40000 ALTER TABLE `institutions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `investigateur_externes`
--
DROP TABLE IF EXISTS `investigateur_externes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `investigateur_externes` (
`personne_id` int(10) unsigned NOT NULL,
`projet_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`personne_id`,`projet_id`),
KEY `investigateur_externes_projet_id_foreign` (`projet_id`),
CONSTRAINT `investigateur_externes_personne_id_foreign` FOREIGN KEY (`personne_id`) REFERENCES `personne_externes` (`id`),
CONSTRAINT `investigateur_externes_projet_id_foreign` FOREIGN KEY (`projet_id`) REFERENCES `projets` (`id`)