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
| --
-- Structure de la table `mc`
--
CREATE TABLE IF NOT EXISTS `mc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` date NOT NULL,
`time` time NOT NULL,
`message` text NOT NULL,
`pertinence` int(11) NOT NULL,
`traite` int(11) NOT NULL,
`id_type_mc` smallint(6) NOT NULL,
`id_dossier` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
--
-- Contenu de la table `mc`
--
INSERT INTO `mc` (`id`, `date`, `time`, `message`, `pertinence`, `traite`, `id_type_mc`, `id_dossier`) VALUES
(1, '2012-05-18', '00:00:00', 'Test affichage mc ', 1, 0, 2, 1),
(2, '1970-01-01', '00:00:00', 'Hello manu MC 21111111', 1, 1, 2, 1),
(3, '1970-01-01', '00:00:00', 'Test ceci est un test jkljkljkljkljkjl de modification???!\r\n Test ceci est un test jkljkljkljkljkjl de modification???!\r\n Test ceci est un test jkljkljkljkljkjl de modification???!\r\n Test ceci est un test jkljkljkljkljkjl de modification???! Test ceci est un test jkljkljkljkljkjl de modification???!\r\neefza gtfrze gre gfgsdf gsdf gsdf', 2, 1, 2, 1),
(5, '1970-01-01', '00:00:00', 'hello', 1, 1, 1, 1),
(6, '1970-01-01', '00:00:00', 'hjfkazhjkf dzhajk fd', 1, 0, 1, 1),
(7, '1970-01-01', '00:00:00', '', 1, 0, 3, 0),
(8, '1970-01-01', '00:00:00', '', 1, 0, 3, 0),
(9, '2012-05-17', '00:00:00', 'Hello', 1, 1, 3, 0),
(10, '2012-05-23', '00:00:00', 'testtttttttt', 1, 1, 3, 0),
(11, '2012-05-23', '00:00:00', 'Hello false', 1, 1, 3, 0),
(12, '0000-00-00', '00:00:00', '', 1, 0, 3, 0);
-- --------------------------------------------------------
--
-- Structure de la table `ref_pertinence`
--
CREATE TABLE IF NOT EXISTS `ref_pertinence` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nom` varchar(30) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Contenu de la table `ref_pertinence`
--
INSERT INTO `ref_pertinence` (`id`, `nom`) VALUES
(1, 'Sans Objet'),
(2, 'Inexploitable'),
(3, 'Exploitable'),
(4, 'Pertinent ');
-- --------------------------------------------------------
--
-- Structure de la table `ref_type_mc`
--
CREATE TABLE IF NOT EXISTS `ref_type_mc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nom` varchar(30) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Contenu de la table `ref_type_mc`
--
INSERT INTO `ref_type_mc` (`id`, `nom`) VALUES
(1, 'Test référence 1'),
(2, 'Test référence 2'),
(3, 'Test référence 3'); |
Partager