DB2_create_tables.sql
28.9 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
-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1
-- Généré le : mer. 27 jan. 2021 à 17:39
-- Version du serveur : 10.5.8-MariaDB
-- Version de PHP : 7.2.34
SET FOREIGN_KEY_CHECKS=0;
SET UNIQUE_CHECKS = 0;
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 utf8mb4 */;
--
-- Base de données : labinvent
--
-- --------------------------------------------------------
--
-- Structure de la table categories
--
DROP TABLE IF EXISTS categories;
CREATE TABLE categories (
id int(11) NOT NULL,
nom varchar(45) NOT NULL COMMENT 'obligatoire (et unique)',
description text DEFAULT NULL,
sur_categorie_id int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table configurations
--
DROP TABLE IF EXISTS configurations;
CREATE TABLE configurations (
id int(11) NOT NULL,
nom varchar(45) NOT NULL COMMENT 'obligatoire (et unique)',
mode_install tinyint(1) DEFAULT 1,
mode_debug tinyint(1) DEFAULT 0,
mode_nolimit tinyint(1) NOT NULL DEFAULT 0 COMMENT 'superadmin a tous les droits',
labNameShort varchar(10) DEFAULT NULL,
labPresent varchar(10) DEFAULT NULL,
labUmr varchar(30) DEFAULT NULL,
hasPrinter tinyint(1) DEFAULT 0,
label_format_num int(3) UNSIGNED NOT NULL DEFAULT 1 COMMENT 'numero de format etiquette',
nom_groupe_thematique varchar(50) DEFAULT 'Groupe thematique',
nom_groupe_metier varchar(50) DEFAULT 'Groupe metier',
envoi_mail tinyint(1) NOT NULL DEFAULT 0,
envoi_mail_guests tinyint(1) NOT NULL DEFAULT 0,
emailGuest1 varchar(45) DEFAULT NULL,
emailGuest2 varchar(45) DEFAULT NULL,
emailGuest3 varchar(45) DEFAULT NULL,
emailGuest4 varchar(45) DEFAULT NULL,
emailGuest5 varchar(45) DEFAULT NULL,
test tinyint(1) DEFAULT 0,
prix_inventaire_administratif int(10) DEFAULT 800,
emailGuest6 varchar(45) DEFAULT NULL,
emailGuest7 varchar(45) DEFAULT NULL,
emailGuest8 varchar(45) DEFAULT NULL,
emailGuest9 varchar(45) DEFAULT NULL,
emailGuest10 varchar(45) DEFAULT NULL,
sender_mail varchar(500) DEFAULT 'labinvent@irap.omp.eu',
labName varchar(200) DEFAULT 'NOM COMPLET',
date_commande_facultative tinyint(1) DEFAULT 0,
numero_labo_sans_annee tinyint(1) DEFAULT 0,
taille_max_doc int(15) DEFAULT 8000000,
metrologie tinyint(1) DEFAULT 0,
aff_par_defaut smallint(6) NOT NULL DEFAULT 20,
procedure_sur_accueil tinyint(1) NOT NULL DEFAULT 1,
ldap_used tinyint(1) NOT NULL DEFAULT 0,
ldap_authentified tinyint(1) NOT NULL DEFAULT 1,
ldap_bindDn varchar(250) DEFAULT NULL,
ldap_bindPass varchar(50) DEFAULT NULL,
ldap_host varchar(250) DEFAULT NULL,
ldap_port varchar(10) DEFAULT NULL,
ldap_authenticationType varchar(30) DEFAULT NULL,
ldap_baseDn varchar(300) DEFAULT NULL,
ldap_filter varchar(300) DEFAULT NULL,
pdf_engine varchar(10) NOT NULL DEFAULT 'FPDF',
ldap_cached tinyint(1) NOT NULL DEFAULT 0,
ldap_cache_last_update datetime DEFAULT NULL,
ldap_cache_validity_duration int(11) NOT NULL DEFAULT 60
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table documents
--
DROP TABLE IF EXISTS documents;
CREATE TABLE documents (
id int(11) NOT NULL,
type_doc varchar(20) DEFAULT NULL,
materiel_id int(11) DEFAULT NULL,
suivi_id int(11) DEFAULT NULL,
type_document_id int(11) DEFAULT NULL,
description text DEFAULT NULL,
nom varchar(100) DEFAULT NULL,
photo tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table emprunts
--
DROP TABLE IF EXISTS emprunts;
CREATE TABLE emprunts (
id int(11) NOT NULL,
nom varchar(45) DEFAULT NULL,
materiel_id int(11) NOT NULL,
date_emprunt date DEFAULT NULL,
date_retour_emprunt date DEFAULT NULL,
emprunt_interne tinyint(1) DEFAULT NULL,
laboratoire varchar(45) DEFAULT NULL,
e_lieu_detail varchar(45) DEFAULT NULL,
nom_emprunteur varchar(45) DEFAULT NULL,
email_emprunteur varchar(45) DEFAULT NULL,
tel varchar(20) DEFAULT NULL,
commentaire varchar(200) DEFAULT NULL,
nom_createur varchar(45) DEFAULT NULL COMMENT 'nom du createur de la fiche',
nom_modificateur varchar(45) DEFAULT NULL COMMENT 'nom du modificateur de la fiche',
created datetime DEFAULT NULL COMMENT 'date et heure de creation de la fiche',
modified datetime DEFAULT NULL COMMENT 'date et heure de modif de la fiche',
site_id int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table fakeldapusers
--
DROP TABLE IF EXISTS fakeldapusers;
CREATE TABLE fakeldapusers (
id int(11) NOT NULL,
sn varchar(45) DEFAULT NULL,
givenname varchar(45) DEFAULT NULL,
uid varchar(45) DEFAULT NULL,
mail varchar(45) DEFAULT NULL,
userpassword varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Structure de la table fichemetrologiques
--
DROP TABLE IF EXISTS fichemetrologiques;
CREATE TABLE fichemetrologiques (
id int(11) NOT NULL,
suivi_id int(11) NOT NULL,
mesurande double DEFAULT NULL,
moyenne double DEFAULT NULL,
ecarttype double DEFAULT NULL,
correction double DEFAULT NULL,
ua double DEFAULT NULL,
ub double DEFAULT NULL,
uc double DEFAULT NULL,
uf double DEFAULT NULL,
u double DEFAULT NULL,
incertitude double DEFAULT NULL,
conditionEnv double DEFAULT NULL,
resolution varchar(45) DEFAULT NULL,
etatmateriel varchar(45) DEFAULT NULL,
etatmetrologique varchar(45) DEFAULT NULL,
emtpersonnel double DEFAULT NULL,
nbMesure int(11) DEFAULT NULL,
conformeEMTstandart varchar(100) DEFAULT NULL,
conformeEMTperso varchar(100) DEFAULT NULL,
resultatfinal varchar(100) DEFAULT NULL,
observation varchar(200) DEFAULT NULL,
datefiche date DEFAULT NULL,
retard varchar(45) DEFAULT 'RAS',
justesse double DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table formules
--
DROP TABLE IF EXISTS formules;
CREATE TABLE formules (
id int(11) NOT NULL,
nommesure varchar(100) DEFAULT NULL,
symbole varchar(45) DEFAULT 'F',
unite varchar(45) DEFAULT NULL,
nbVariable int(11) DEFAULT NULL,
formule varchar(200) DEFAULT 'F'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table fournisseurs
--
DROP TABLE IF EXISTS fournisseurs;
CREATE TABLE fournisseurs (
id int(11) NOT NULL,
nom varchar(45) DEFAULT NULL,
description text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table groupes_metiers
--
DROP TABLE IF EXISTS groupes_metiers;
CREATE TABLE groupes_metiers (
id int(11) NOT NULL,
nom varchar(45) DEFAULT NULL,
description text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table groupes_thematiques
--
DROP TABLE IF EXISTS groupes_thematiques;
CREATE TABLE groupes_thematiques (
id int(11) NOT NULL,
nom varchar(45) DEFAULT NULL,
description text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table materiels
--
DROP TABLE IF EXISTS materiels;
CREATE TABLE materiels (
id int(11) NOT NULL,
tobeordered tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Materiel a commander (si true)',
designation varchar(50) DEFAULT NULL,
will_stay tinyint(1) NOT NULL DEFAULT 1 COMMENT 'ce materiel restera au labo ?',
sur_categorie_id int(11) DEFAULT NULL,
categorie_id int(11) DEFAULT NULL,
sous_categorie_id int(11) DEFAULT NULL,
numero_laboratoire varchar(20) DEFAULT NULL,
description text DEFAULT NULL,
materiel_administratif tinyint(1) DEFAULT NULL,
materiel_technique tinyint(1) DEFAULT NULL,
status varchar(15) DEFAULT 'CREATED',
date_validated date DEFAULT NULL,
date_archived date DEFAULT NULL,
date_acquisition date DEFAULT NULL,
prix_ht decimal(13,2) DEFAULT NULL,
eotp varchar(45) DEFAULT NULL,
numero_commande varchar(45) DEFAULT NULL,
code_comptable varchar(45) DEFAULT NULL,
numero_serie varchar(45) DEFAULT NULL,
groupes_thematique_id int(11) DEFAULT NULL,
groupes_metier_id int(11) DEFAULT NULL,
projet_id int(11) DEFAULT NULL,
numero_inventaire_organisme varchar(45) DEFAULT NULL,
numero_inventaire_old varchar(45) DEFAULT NULL COMMENT 'Ancien numero inventaire',
etiquette tinyint(1) DEFAULT 0 COMMENT 'etiquette sur materiel oui ou non',
lieu_detail varchar(45) DEFAULT NULL,
nom_user varchar(45) DEFAULT NULL COMMENT 'Le destinataire utilisateur du matos',
nom_responsable varchar(45) DEFAULT NULL,
email_responsable varchar(45) DEFAULT NULL,
resp_credit varchar(50) DEFAULT NULL COMMENT 'Responsable du crédit',
gestionnaire_id int(11) DEFAULT NULL,
nom_createur varchar(45) DEFAULT NULL COMMENT 'nom du createur de la fiche',
nom_modificateur varchar(45) DEFAULT NULL COMMENT 'nom du modificateur de la fiche',
created datetime DEFAULT NULL COMMENT 'date et heure de creation de la fiche',
modified datetime DEFAULT NULL COMMENT 'date et heure de modif de la fiche',
date_reception date DEFAULT NULL,
organisme_id int(11) DEFAULT NULL,
site_id int(11) DEFAULT NULL,
date_fin_garantie date DEFAULT NULL,
duree_garantie int(10) DEFAULT NULL,
unite_duree_garantie varchar(30) DEFAULT NULL,
hors_service tinyint(1) DEFAULT NULL,
photo_id int(11) DEFAULT NULL,
metrologie tinyint(1) DEFAULT 0,
fournisseur_id int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table mesures
--
DROP TABLE IF EXISTS mesures;
CREATE TABLE mesures (
id int(11) NOT NULL,
fichemetrologique_id int(11) NOT NULL,
valeur double DEFAULT NULL,
erreur double DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table organismes
--
DROP TABLE IF EXISTS organismes;
CREATE TABLE organismes (
id int(11) NOT NULL,
nom varchar(50) DEFAULT NULL,
description text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table phinxlog
--
DROP TABLE IF EXISTS phinxlog;
CREATE TABLE phinxlog (
version bigint(20) NOT NULL,
migration_name varchar(100) DEFAULT NULL,
start_time timestamp NULL DEFAULT NULL,
end_time timestamp NULL DEFAULT NULL,
breakpoint tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table projets
--
DROP TABLE IF EXISTS projets;
CREATE TABLE projets (
id int(11) NOT NULL,
nom varchar(45) NOT NULL,
description text DEFAULT NULL,
groupes_thematique_id int(11) DEFAULT NULL,
chef_science_id int(11) DEFAULT NULL,
chef_projet_id int(11) DEFAULT NULL,
date_start date DEFAULT NULL,
date_stop date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table sites
--
DROP TABLE IF EXISTS sites;
CREATE TABLE sites (
id int(11) NOT NULL,
nom varchar(50) DEFAULT NULL,
description text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table sous_categories
--
DROP TABLE IF EXISTS sous_categories;
CREATE TABLE sous_categories (
id int(11) NOT NULL,
nom varchar(45) NOT NULL,
description text DEFAULT NULL,
categorie_id int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table stats
--
DROP TABLE IF EXISTS stats;
CREATE TABLE stats (
year year(4) NOT NULL,
user_id int(11) NOT NULL,
last_login_time datetime DEFAULT NULL,
last_connex_dur int(11) NOT NULL DEFAULT 0 COMMENT 'Temps de connexion de la derniere session',
last_logout_time datetime DEFAULT NULL,
connex_nb int(11) NOT NULL DEFAULT 0 COMMENT 'nb connexions sur l''année',
connex_dur_tot int(11) NOT NULL DEFAULT 0 COMMENT 'Total temps connexion cumulé sur année (sec)'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Statistiques de connexion des utilisateurs';
-- --------------------------------------------------------
--
-- Structure de la table suivis
--
DROP TABLE IF EXISTS suivis;
CREATE TABLE suivis (
id int(11) NOT NULL,
materiel_id int(11) NOT NULL,
date_controle date DEFAULT NULL,
date_prochain_controle date DEFAULT NULL,
organisme varchar(50) DEFAULT NULL,
frequence int(11) DEFAULT NULL,
commentaire text DEFAULT NULL,
nom_createur varchar(45) DEFAULT NULL COMMENT 'nom du createur de la fiche',
nom_modificateur varchar(45) DEFAULT NULL COMMENT 'nom du modificateur de la fiche',
created datetime DEFAULT NULL COMMENT 'date et heure de creation de la fiche',
modified datetime DEFAULT NULL COMMENT 'date et heure de modif de la fiche',
unite_id int(11) DEFAULT NULL,
plage_debut double DEFAULT NULL,
plage_fin double DEFAULT NULL,
resolution double DEFAULT NULL,
tolerance double DEFAULT NULL,
sensibilite double DEFAULT NULL,
justesse double DEFAULT NULL,
fidelite double DEFAULT NULL,
typemesure varchar(45) DEFAULT 'Direct',
emtstandart double DEFAULT NULL,
symbole varchar(45) DEFAULT NULL,
nommesure varchar(45) DEFAULT NULL,
valeurRef double DEFAULT NULL,
intitule varchar(100) DEFAULT NULL,
conforme varchar(100) DEFAULT NULL,
formule_id int(11) DEFAULT NULL,
type_suivi_id int(11) NOT NULL DEFAULT 1,
type_frequence varchar(30) DEFAULT NULL,
panne_resolu tinyint(1) DEFAULT 1,
groupes_metier_id int(11) DEFAULT NULL,
groupes_thematique_id int(11) DEFAULT NULL,
statut varchar(30) DEFAULT 'En cours'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table sur_categories
--
DROP TABLE IF EXISTS sur_categories;
CREATE TABLE sur_categories (
id int(11) NOT NULL,
nom varchar(45) NOT NULL,
description text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table type_documents
--
DROP TABLE IF EXISTS type_documents;
CREATE TABLE type_documents (
id int(11) NOT NULL,
nom varchar(100) DEFAULT NULL,
description text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table type_suivis
--
DROP TABLE IF EXISTS type_suivis;
CREATE TABLE type_suivis (
id int(11) NOT NULL,
nom varchar(50) DEFAULT NULL,
description text DEFAULT NULL,
is_regular tinyint(1) NOT NULL DEFAULT 0 COMMENT 'suivi de type régulier (avec fréquence et non pas date)',
is_metro tinyint(1) NOT NULL DEFAULT 0 COMMENT 'type de suivi lié au module métrologie'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table unites
--
DROP TABLE IF EXISTS unites;
CREATE TABLE unites (
id int(11) NOT NULL,
nom varchar(45) DEFAULT NULL,
symbole varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table users
--
-- password varchar(255) DEFAULT '$2y$10$nBQMNstgN.sgad1ZANznY.pbJI.ZG/.Q5qX4gC8SXCFQnDIZC8rcW',
DROP TABLE IF EXISTS users;
CREATE TABLE users (
id int(11) NOT NULL,
created datetime DEFAULT NULL,
modified datetime DEFAULT NULL,
nom varchar(45) DEFAULT NULL,
username varchar(45) DEFAULT NULL,
email varchar(45) DEFAULT NULL,
role varchar(45) DEFAULT NULL,
groupes_metier_id int(11) DEFAULT NULL,
is_resp_groupes_metier tinyint(1) NOT NULL DEFAULT 0 COMMENT 'responsable du groupe metier o/n',
password varchar(255) DEFAULT NULL COMMENT 'on ne stocke pas le password ldap, meme si on pouvait...',
groupes_thematique_id int(11) DEFAULT NULL,
is_resp_groupes_thematique tinyint(1) NOT NULL DEFAULT 0 COMMENT 'responsable du groupe thematique o/n',
sur_categorie_id int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `variables`
--
DROP TABLE IF EXISTS variables;
CREATE TABLE `variables` (
id int(11) NOT NULL,
formule_id int(11) DEFAULT NULL,
symbolegrandeurphysique varchar(45) DEFAULT NULL,
symboleunitemesure varchar(45) DEFAULT NULL,
nomgrandeurphysique varchar(45) DEFAULT NULL,
domainedef varchar(45) DEFAULT NULL,
derivepartielle varchar(100) DEFAULT 'F'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Index pour les tables déchargées
--
--
-- Index pour la table categories
--
ALTER TABLE categories
ADD PRIMARY KEY (id),
ADD UNIQUE KEY nom_UNIQUE (nom),
ADD KEY fk_sur_categorie_id (sur_categorie_id);
--
-- Index pour la table configurations
--
ALTER TABLE configurations
ADD PRIMARY KEY (id),
ADD UNIQUE KEY nom_UNIQUE (nom);
--
-- Index pour la table documents
--
ALTER TABLE documents
ADD PRIMARY KEY (id),
ADD KEY fk_documents_materiel_id (materiel_id),
ADD KEY fk_documents_suivi_id (suivi_id),
ADD KEY fk_documents_type_documents_id (type_document_id);
--
-- Index pour la table emprunts
--
ALTER TABLE emprunts
ADD PRIMARY KEY (id),
ADD KEY fk_technical_materials_internal_loans_copy1_admi_materials1 (materiel_id),
ADD KEY fk_emprunts_site_id (site_id);
--
-- Index pour la table fakeldapusers
--
ALTER TABLE fakeldapusers
ADD PRIMARY KEY (id),
ADD UNIQUE KEY uid (uid);
--
-- Index pour la table fichemetrologiques
--
ALTER TABLE fichemetrologiques
ADD PRIMARY KEY (id),
ADD KEY fk_fichemetrologique_suivi_id_idx (suivi_id);
--
-- Index pour la table formules
--
ALTER TABLE formules
ADD PRIMARY KEY (id);
--
-- Index pour la table fournisseurs
--
ALTER TABLE fournisseurs
ADD PRIMARY KEY (id),
ADD UNIQUE KEY nom (nom);
--
-- Index pour la table groupes_metiers
--
ALTER TABLE groupes_metiers
ADD PRIMARY KEY (id),
ADD UNIQUE KEY index_groupes_metiers_nom_unique (nom);
--
-- Index pour la table groupes_thematiques
--
ALTER TABLE groupes_thematiques
ADD PRIMARY KEY (id),
ADD UNIQUE KEY index_groupes_thematiques_nom_unique (nom);
--
-- Index pour la table materiels
--
ALTER TABLE materiels
ADD PRIMARY KEY (id),
ADD UNIQUE KEY numero_irap (numero_laboratoire),
ADD KEY fk_administrative_materials_sub_categories1 (sous_categorie_id),
ADD KEY fk_materiels_categories1 (categorie_id),
ADD KEY fk_materiels_organisme_id (organisme_id),
ADD KEY fk_materiels_site_id (site_id),
ADD KEY fk_materiels_fournisseurs_id_idx (fournisseur_id),
ADD KEY fk_materiels_projet_id (projet_id),
ADD KEY fk_materiels_sur_categorie_id (sur_categorie_id),
ADD KEY fk_materials_thematic_group1 (groupes_thematique_id),
ADD KEY fk_materials_work_group1 (groupes_metier_id),
ADD KEY fk_materiels_gestionnaire_id (gestionnaire_id);
--
-- Index pour la table mesures
--
ALTER TABLE mesures
ADD PRIMARY KEY (id),
ADD KEY fk_mesures_fichemetrologique_id_idx (fichemetrologique_id);
--
-- Index pour la table organismes
--
ALTER TABLE organismes
ADD PRIMARY KEY (id),
ADD UNIQUE KEY index_organismes_nom_unique (nom);
--
-- Index pour la table phinxlog
--
ALTER TABLE phinxlog
ADD PRIMARY KEY (version);
--
-- Index pour la table projets
--
ALTER TABLE projets
ADD PRIMARY KEY (id),
ADD UNIQUE KEY nom (nom),
ADD KEY fk_projets_groupes_thematique_id (groupes_thematique_id);
--
-- Index pour la table sites
--
ALTER TABLE sites
ADD PRIMARY KEY (id),
ADD UNIQUE KEY nom (nom);
--
-- Index pour la table sous_categories
--
ALTER TABLE sous_categories
ADD PRIMARY KEY (id),
ADD KEY category_id (categorie_id);
--
-- Index pour la table stats
--
ALTER TABLE stats
ADD PRIMARY KEY (year,user_id),
ADD KEY fk_stats_users (user_id),
ADD KEY index_stats_year (year);
--
-- Index pour la table suivis
--
-- ADD KEY fk_admi_material_histories_admi_materials1 (materiel_id),
ALTER TABLE suivis
ADD PRIMARY KEY (id),
ADD KEY fk_suivis_materiel_id (materiel_id),
ADD KEY fk_suivis_type_suivi_id (type_suivi_id),
ADD KEY fk_suivis_groupe_thematique (groupes_thematique_id),
ADD KEY fk_suivis_groupe_metier (groupes_metier_id),
ADD KEY fk_suivis_unite_id_idx (unite_id),
ADD KEY fk_suivis_formule_id_idx (formule_id);
--
-- Index pour la table sur_categories
--
ALTER TABLE sur_categories
ADD PRIMARY KEY (id),
ADD UNIQUE KEY nom_UNIQUE (nom);
--
-- Index pour la table type_documents
--
ALTER TABLE type_documents
ADD PRIMARY KEY (id),
ADD UNIQUE KEY index_type_documents_nom_unique (nom) USING BTREE;
--
-- Index pour la table type_suivis
--
ALTER TABLE type_suivis
ADD PRIMARY KEY (id),
ADD UNIQUE KEY nom (nom);
--
-- Index pour la table unites
--
ALTER TABLE unites
ADD PRIMARY KEY (id);
--
-- Index pour la table users
--
-- ADD KEY fk_users_sur_categories_id_idx (sur_categorie_id),
ALTER TABLE users
ADD PRIMARY KEY (id),
ADD UNIQUE KEY username (username),
ADD UNIQUE KEY nom (nom),
ADD KEY fk_users_sur_categories_id (sur_categorie_id),
ADD KEY fk_users_groupe_thematique_id (groupes_thematique_id);
--
-- Index pour la table `variables`
--
ALTER TABLE `variables`
ADD PRIMARY KEY (id),
ADD KEY fk_variables_formule_id_idx (formule_id);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table categories
--
ALTER TABLE categories
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table configurations
--
ALTER TABLE configurations
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table documents
--
ALTER TABLE documents
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table emprunts
--
ALTER TABLE emprunts
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table fakeldapusers
--
ALTER TABLE fakeldapusers
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table fichemetrologiques
--
ALTER TABLE fichemetrologiques
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table formules
--
ALTER TABLE formules
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table fournisseurs
--
ALTER TABLE fournisseurs
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table groupes_metiers
--
ALTER TABLE groupes_metiers
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table groupes_thematiques
--
ALTER TABLE groupes_thematiques
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table materiels
--
ALTER TABLE materiels
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table mesures
--
ALTER TABLE mesures
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table organismes
--
ALTER TABLE organismes
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table projets
--
ALTER TABLE projets
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table sites
--
ALTER TABLE sites
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table sous_categories
--
ALTER TABLE sous_categories
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table suivis
--
ALTER TABLE suivis
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table sur_categories
--
ALTER TABLE sur_categories
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table type_documents
--
ALTER TABLE type_documents
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table type_suivis
--
ALTER TABLE type_suivis
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table unites
--
ALTER TABLE unites
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table users
--
ALTER TABLE users
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table `variables`
--
ALTER TABLE `variables`
MODIFY id int(11) NOT NULL AUTO_INCREMENT;
--
-- Contraintes pour les tables déchargées
--
--
-- Contraintes pour la table categories
--
ALTER TABLE categories
ADD CONSTRAINT fk_sur_categorie_id FOREIGN KEY (sur_categorie_id) REFERENCES sur_categories (id) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Contraintes pour la table documents
--
ALTER TABLE documents
ADD CONSTRAINT fk_documents_materiel_id FOREIGN KEY (materiel_id) REFERENCES materiels (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_documents_suivi_id FOREIGN KEY (suivi_id) REFERENCES suivis (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_documents_type_documents_id FOREIGN KEY (type_document_id) REFERENCES type_documents (id) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Contraintes pour la table emprunts
--
ALTER TABLE emprunts
ADD CONSTRAINT fk_emprunts_site_id FOREIGN KEY (site_id) REFERENCES sites (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_technical_materials_internal_loans_copy1_admi_materials1 FOREIGN KEY (materiel_id) REFERENCES materiels (id) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Contraintes pour la table materiels
--
ALTER TABLE materiels
ADD CONSTRAINT fk_administrative_materials_sub_categories1 FOREIGN KEY (sous_categorie_id) REFERENCES sous_categories (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materials_thematic_group1 FOREIGN KEY (groupes_thematique_id) REFERENCES groupes_thematiques (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materials_work_group1 FOREIGN KEY (groupes_metier_id) REFERENCES groupes_metiers (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materiels_categories1 FOREIGN KEY (categorie_id) REFERENCES categories (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materiels_fournisseurs_id FOREIGN KEY (fournisseur_id) REFERENCES fournisseurs (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materiels_gestionnaire_id FOREIGN KEY (gestionnaire_id) REFERENCES `users` (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materiels_organisme_id FOREIGN KEY (organisme_id) REFERENCES organismes (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materiels_projet_id FOREIGN KEY (projet_id) REFERENCES projets (id) ON DELETE SET NULL,
ADD CONSTRAINT fk_materiels_site_id FOREIGN KEY (site_id) REFERENCES sites (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_materiels_sur_categorie_id FOREIGN KEY (sur_categorie_id) REFERENCES sur_categories (id) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Contraintes pour la table projets
--
ALTER TABLE projets
ADD CONSTRAINT fk_projets_groupes_thematique_id FOREIGN KEY (groupes_thematique_id) REFERENCES groupes_thematiques (id) ON DELETE SET NULL;
--
-- Contraintes pour la table sous_categories
--
ALTER TABLE sous_categories
ADD CONSTRAINT category_id FOREIGN KEY (categorie_id) REFERENCES categories (id) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Contraintes pour la table stats
--
ALTER TABLE stats
ADD CONSTRAINT fk_stats_users FOREIGN KEY (user_id) REFERENCES `users` (id) ON DELETE CASCADE;
--
-- Contraintes pour la table suivis
--
-- ADD CONSTRAINT fk_admi_material_histories_admi_materials1 FOREIGN KEY (materiel_id) REFERENCES materiels (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ALTER TABLE suivis
ADD CONSTRAINT fk_suivis_materiel_id FOREIGN KEY (materiel_id) REFERENCES materiels (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_suivis_formule_id FOREIGN KEY (formule_id) REFERENCES formules (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_suivis_groupe_metier FOREIGN KEY (groupes_metier_id) REFERENCES groupes_metiers (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_suivis_groupe_thematique FOREIGN KEY (groupes_thematique_id) REFERENCES groupes_thematiques (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_suivis_type_suivi_id FOREIGN KEY (type_suivi_id) REFERENCES type_suivis (id) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT fk_suivis_unite_id FOREIGN KEY (unite_id) REFERENCES unites (id) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Contraintes pour la table users
--
ALTER TABLE users
ADD CONSTRAINT fk_users_groupe_thematique_id FOREIGN KEY (groupes_thematique_id) REFERENCES groupes_thematiques (id) ON DELETE SET NULL ON UPDATE NO ACTION,
ADD CONSTRAINT fk_users_sur_categorie_id FOREIGN KEY (sur_categorie_id) REFERENCES sur_categories (id) ON DELETE NO ACTION ON UPDATE NO ACTION;
-- SET FOREIGN_KEY_CHECKS=1;
-- SET UNIQUE_CHECKS = 1;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;