USE `_mydb_`; -- -------------------------------------------------------- -- -- Structure de la table `categories` -- CREATE TABLE `categories` ( `id` int(11) NOT NULL, `nom` varchar(45) NOT NULL COMMENT 'obligatoire (et unique)', `sur_categorie_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `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', `labNameShort` varchar(10) DEFAULT NULL, `labPresent` varchar(10) DEFAULT NULL, `labUmr` varchar(30) DEFAULT NULL, `hasPrinter` tinyint(1) DEFAULT '0', `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 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `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, `nom` varchar(100) DEFAULT NULL, `photo` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `emprunts` -- CREATE TABLE `emprunts` ( `id` int(11) NOT 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 `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` -- 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` -- CREATE TABLE `fournisseurs` ( `id` int(11) NOT NULL, `nom` varchar(45) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `groupes_metiers` -- CREATE TABLE `groupes_metiers` ( `id` int(11) NOT NULL, `nom` varchar(45) DEFAULT NULL, `description` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `groupes_thematiques` -- CREATE TABLE `groupes_thematiques` ( `id` int(11) NOT NULL, `nom` varchar(45) DEFAULT NULL, `description` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `materiels` -- CREATE TABLE `materiels` ( `id` int(11) NOT NULL, `designation` varchar(50) DEFAULT NULL, `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, `materiel_administratif` tinyint(1) DEFAULT NULL, `materiel_technique` tinyint(1) DEFAULT NULL, `status` varchar(15) DEFAULT 'CREATED', `date_acquisition` date DEFAULT NULL, `prix_ht` float UNSIGNED 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, `numero_inventaire_organisme` varchar(45) DEFAULT NULL, `numero_inventaire_old` varchar(45) DEFAULT NULL COMMENT 'Ancien numero inventaire', `date_archivage` date DEFAULT NULL, `etiquette` tinyint(1) DEFAULT '0' COMMENT 'etiquette sur materiel oui ou non', `lieu_detail` varchar(45) DEFAULT NULL, `nom_responsable` varchar(45) DEFAULT NULL, `email_responsable` varchar(45) DEFAULT NULL, `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 '2', `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` -- 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` -- CREATE TABLE `organismes` ( `id` int(11) NOT NULL, `nom` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `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 `sites` -- CREATE TABLE `sites` ( `id` int(11) NOT NULL, `nom` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `sous_categories` -- CREATE TABLE `sous_categories` ( `id` int(11) NOT NULL, `nom` varchar(45) NOT NULL, `categorie_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `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` varchar(100) 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) DEFAULT NULL, `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` -- CREATE TABLE `sur_categories` ( `id` int(11) NOT NULL, `nom` varchar(45) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `type_documents` -- CREATE TABLE `type_documents` ( `id` int(11) NOT NULL, `nom` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `type_suivis` -- CREATE TABLE `type_suivis` ( `id` int(11) NOT NULL, `nom` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `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` -- CREATE TABLE `users` ( `id` int(11) NOT 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, `password` varchar(255) DEFAULT '$2y$10$nBQMNstgN.sgad1ZANznY.pbJI.ZG/.Q5qX4gC8SXCFQnDIZC8rcW', `groupe_thematique_id` int(11) DEFAULT NULL, `sur_categorie_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `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 `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`); -- -- Index pour la table `groupes_thematiques` -- ALTER TABLE `groupes_thematiques` ADD PRIMARY KEY (`id`); -- -- 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_materials_thematic_group1` (`groupes_thematique_id`), ADD KEY `fk_materials_work_group1` (`groupes_metier_id`), ADD KEY `fk_materiels_categories1` (`categorie_id`), ADD KEY `fk_materiels_sur_categorie_id` (`sur_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`); -- -- 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`); -- -- Index pour la table `phinxlog` -- ALTER TABLE `phinxlog` ADD PRIMARY KEY (`version`); -- -- Index pour la table `sites` -- ALTER TABLE `sites` ADD PRIMARY KEY (`id`); -- -- Index pour la table `sous_categories` -- ALTER TABLE `sous_categories` ADD PRIMARY KEY (`id`), ADD KEY `category_id` (`categorie_id`); -- -- Index pour la table `suivis` -- ALTER TABLE `suivis` ADD PRIMARY KEY (`id`), ADD KEY `fk_admi_material_histories_admi_materials1` (`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`); -- -- Index pour la table `type_suivis` -- ALTER TABLE `type_suivis` ADD PRIMARY KEY (`id`); -- -- Index pour la table `unites` -- ALTER TABLE `unites` ADD PRIMARY KEY (`id`); -- -- Index pour la table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD KEY `fk_users_groupes_travails1` (`groupes_metier_id`), ADD KEY `fk_users_groupe_thematique_id` (`groupe_thematique_id`), ADD KEY `fk_users_sur_categories_id_idx` (`sur_categorie_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=76; -- -- AUTO_INCREMENT pour la table `configurations` -- ALTER TABLE `configurations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT pour la table `documents` -- ALTER TABLE `documents` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT pour la table `emprunts` -- ALTER TABLE `emprunts` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- 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=390; -- -- AUTO_INCREMENT pour la table `groupes_metiers` -- ALTER TABLE `groupes_metiers` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT pour la table `groupes_thematiques` -- ALTER TABLE `groupes_thematiques` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT pour la table `materiels` -- ALTER TABLE `materiels` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11964; -- -- 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=4; -- -- AUTO_INCREMENT pour la table `sites` -- ALTER TABLE `sites` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT pour la table `sous_categories` -- ALTER TABLE `sous_categories` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=50; -- -- 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=7; -- -- AUTO_INCREMENT pour la table `type_documents` -- ALTER TABLE `type_documents` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT pour la table `type_suivis` -- ALTER TABLE `type_suivis` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- 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=73; -- -- 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_organisme_id` FOREIGN KEY (`organisme_id`) REFERENCES `organismes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, 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 `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 `suivis` -- ALTER 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, 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_sur_categories_id` FOREIGN KEY (`sur_categorie_id`) REFERENCES `sur_categories` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; COMMIT; -- Insertion par défaut Insert into type_suivis(nom) values ('Réparation'); Insert into type_suivis(id,nom) values ('2','Panne'); Insert into sites(id, nom) values (9, 'N/A'); Insert into type_documents(id, nom) values (1, 'N/A'); Insert into type_documents(id, nom) values (13, 'Devis'); Insert into type_documents(nom) values ('Bon de commande'); Insert into type_documents(nom) values ('Bon de livraison'); Insert into type_documents(nom) values ('Photo'); Insert into type_documents(nom) values ('Documentation technique'); Insert into type_documents(nom) values ('Spécifications'); Insert into type_documents(nom) values ('CR de maintenance'); Insert into type_documents(nom) values ('CR d\'étalonnage'); Insert into type_documents(nom) values ('Suivi de panne'); Insert into type_documents(nom) values ('Certificat de garantie'); Insert into type_documents(nom) values ('Certificat de conformité'); Insert into type_documents(nom) values ('Manuel d\'utilisation'); -- Insertion par défaut pour la table configuration Insert into `configurations`(`id`, `nom`, `mode_install`, `mode_debug`, `use_ldap`, `host_ldap`, `port_ldap`, `authentificationType_ldap`, `baseDn_ldap`, `filter_ldap`, `labName`, `labNameShort`, `labPresent`, `labUmr`, `hasPrinter`, `emailGuest1`, `emailGuest2`, `emailGuest3`) values (1, 'default', '1', '0', '0', '', '', 'xxx', '', '', 'LABONAME', 'LABO', 'du ', '', '0', '', '', ''); /*!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 */;