labinvent_2.1_12-05-16.sql 14.5 KB
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Client: localhost
-- Généré le: Mar 19 Avril 2016 à 11:20
-- Version du serveur: 5.5.47-0ubuntu0.14.04.1
-- Version de PHP: 5.5.9-1ubuntu4.14

-- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
-- 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 utf8 */;

--
-- Base de données: `mydb`


CREATE SCHEMA IF NOT EXISTS mydb DEFAULT CHARACTER SET latin1;
CREATE SCHEMA IF NOT EXISTS test_mydb DEFAULT CHARACTER SET latin1;

-- Creation du proprietaire de la BD
-- La ligne suivante serait la meilleure, mais ne suffit pas, impossible de se connecter a la BD avec ceci :
-- grant all on mydb.* to 'bddUserName' identified by 'bddUserPass';
-- ni avec ceci :
-- grant all on mydb.* to 'bddUserName'@'%' identified by 'bddUserPass';
-- Il faut donc faire ceci (ajouter localhost) et on pourra alors se connecter a la BD !!! :

-- Il faut supprimer l'utilisateur avant de l'ajouter.
GRANT USAGE ON *.* TO 'mydb';
DROP USER 'mydb';
grant all on mydb.* to 'mydb'@'localhost' identified by 'mydb1';
grant all on test_mydb.* to 'mydb'@'localhost' identified by 'mydb1';

-- Mais, ca serait plus prudent de limiter les droits (au lieu de "grant all"):
-- grant select,insert,update,delete on mydb.* to ...
flush privileges;


USE mydb;
set foreign_key_checks=0;
-- --------------------------------------------------------
--
-- Structure de la table `categories`
--

DROP TABLE IF EXISTS `categories`;
CREATE TABLE IF NOT EXISTS `categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(45) NOT NULL COMMENT 'obligatoire (et unique)',
  `sur_categorie_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `nom_UNIQUE` (`nom`),
  KEY `fk_sur_categorie_id` (`sur_categorie_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=74 ;


-- --------------------------------------------------------
--
-- Structure de la table `documents`
--

DROP TABLE IF EXISTS `documents`;
CREATE TABLE IF NOT EXISTS `documents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type_doc` varchar(20) DEFAULT NULL,
  `chemin` varchar(60) DEFAULT NULL,
  `materiel_id` int(11) NOT NULL,
  `suivi_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `fk_documents_materiel_id` (`materiel_id`),
  KEY `fk_documents_suivi_id` (`suivi_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------
--
-- Structure de la table `emprunts`
--

DROP TABLE IF EXISTS `emprunts`;
CREATE TABLE IF NOT EXISTS `emprunts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `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,
  `site_id` int(11) 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',
  PRIMARY KEY (`id`),
  KEY `fk_technical_materials_internal_loans_copy1_admi_materials1` (`materiel_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;


-- --------------------------------------------------------
--
-- Structure de la table `groupes_metiers`
--

DROP TABLE IF EXISTS `groupes_metiers`;
CREATE TABLE IF NOT EXISTS `groupes_metiers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(45) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;


-- --------------------------------------------------------
--
-- Structure de la table `groupes_thematiques`
--

DROP TABLE IF EXISTS `groupes_thematiques`;
CREATE TABLE IF NOT EXISTS `groupes_thematiques` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(45) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;


-- --------------------------------------------------------
--
-- Structure de la table `materiels`
--

DROP TABLE IF EXISTS `materiels`;
CREATE TABLE IF NOT EXISTS `materiels` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `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(14) 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,
  `fournisseur` varchar(50) 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,
  `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',
  PRIMARY KEY (`id`),
  UNIQUE KEY `numero_irap` (`numero_laboratoire`),
  KEY `fk_administrative_materials_sub_categories1` (`sous_categorie_id`),
  KEY `fk_materials_thematic_group1` (`groupes_thematique_id`),
  KEY `fk_materials_work_group1` (`groupes_metier_id`),
  KEY `fk_materiels_categories1` (`categorie_id`),
  KEY `fk_materiels_sur_categorie_id` (`sur_categorie_id`),
  KEY `fk_materiels_organisme_id` (`organisme_id`),
  KEY `fk_materiels_site_id` (`site_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=11587 ;


-- --------------------------------------------------------
--
-- Structure de la table `organismes`
--

DROP TABLE IF EXISTS `organismes`;
CREATE TABLE IF NOT EXISTS `organismes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;


-- --------------------------------------------------------
--
-- Structure de la table `sites`
--

DROP TABLE IF EXISTS `sites`;
CREATE TABLE IF NOT EXISTS `sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;


-- --------------------------------------------------------
--
-- Structure de la table `sous_categories`
--

DROP TABLE IF EXISTS `sous_categories`;
CREATE TABLE IF NOT EXISTS `sous_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(45) NOT NULL,
  `categorie_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `category_id` (`categorie_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=45 ;


-- --------------------------------------------------------
--
-- Structure de la table `suivis`
--

DROP TABLE IF EXISTS `suivis`;
CREATE TABLE IF NOT EXISTS `suivis` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `materiel_id` int(11) NOT NULL,
  `date_controle` date DEFAULT NULL,
  `date_prochain_controle` date DEFAULT NULL,
  `type_suivi_id` int(11) 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',
  PRIMARY KEY (`id`),
  KEY `fk_admi_material_histories_admi_materials1` (`materiel_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=48 ;


-- --------------------------------------------------------
--
-- Structure de la table `sur_categories`
--

DROP TABLE IF EXISTS `sur_categories`;
CREATE TABLE IF NOT EXISTS `sur_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(45) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `nom_UNIQUE` (`nom`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;


-- --------------------------------------------------------

--
-- Structure de la table `type_suivis`
--

DROP TABLE IF EXISTS `type_suivis`;
CREATE TABLE IF NOT EXISTS `type_suivis` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;


-- --------------------------------------------------------
--
-- Structure de la table `users`
--

DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(45) DEFAULT NULL,
  `username` varchar(45) DEFAULT NULL,
  `password` VARCHAR(255),
  `email` varchar(45) DEFAULT NULL,
  `role` varchar(45) DEFAULT NULL,
  `groupes_metier_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `username_UNIQUE` (`username`),
  KEY `fk_users_groupes_travails1` (`groupes_metier_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;


-- --------------------------------------------------------
--
-- Structure de la table `configurations`
--

DROP TABLE IF EXISTS `configurations`;
CREATE TABLE IF NOT EXISTS `configurations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nom` varchar(45) NOT NULL COMMENT 'obligatoire (et unique)',
  `mode_install` tinyint(1)  DEFAULT NULL,
  `mode_debug` tinyint(1)  DEFAULT NULL,
  `use_ldap` tinyint(1)  DEFAULT NULL,
  `host_ldap` varchar(30)  DEFAULT NULL,
  `port_ldap` varchar(10)  DEFAULT NULL,
  `authentificationType_ldap` varchar(30)  DEFAULT NULL,
  `baseDn_ldap` varchar(30)  DEFAULT NULL,
  `filter_ldap` varchar(30)  DEFAULT NULL,
  `labName` varchar(30)  DEFAULT NULL,
  `labNameShort` varchar(20)  DEFAULT NULL,
  `labPresent` varchar(10)  DEFAULT NULL,
  `labUmr` varchar(30)  DEFAULT NULL,
  `hasPrinter` tinyint(1)  DEFAULT NULL,
  `emailGuest1` varchar(45)  DEFAULT NULL,
  `emailGuest2` varchar(45)  DEFAULT NULL,
  `emailGuest3` varchar(45)  DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `nom_UNIQUE` (`nom`)
);

--
-- Contraintes pour les tables exporté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;

--
-- Contraintes pour la table `emprunts`
--
ALTER TABLE `emprunts`
  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,
  ADD CONSTRAINT `fk_emprunts_site_id` FOREIGN KEY (`site_id`) REFERENCES `sites` (`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_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_type_suivi_id` FOREIGN KEY (`type_suivi_id`) REFERENCES `type_suivis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;

--
-- Contraintes pour la table `users`
--
ALTER TABLE `users`
  ADD CONSTRAINT `fk_users_groupes_travails1` FOREIGN KEY (`groupes_metier_id`) REFERENCES `groupes_metiers` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;


-- Insertion par défaut pour la table configuration
Insert into `configurations`(`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 ('default', '1', '0', '0', '', '', '', '', '', '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 */;