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
|
--
-- Structure de la table `lien`
--
CREATE TABLE IF NOT EXISTS `lien` (
`objet_id` int(11) NOT NULL,
`personne_id` int(11) NOT NULL,
PRIMARY KEY (`objet_id`,`personne_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Contenu de la table `lien`
--
INSERT INTO `lien` (`objet_id`, `personne_id`) VALUES
(1, 1),
(1, 2),
(2, 1),
(3, 2);
-- --------------------------------------------------------
--
-- Structure de la table `objets`
--
CREATE TABLE IF NOT EXISTS `objets` (
`id` int(11) NOT NULL auto_increment,
`titre` varchar(255) collate utf8_unicode_ci default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ;
--
-- Contenu de la table `objets`
--
INSERT INTO `objets` (`id`, `titre`) VALUES
(1, 'objet 1'),
(2, 'objet 2'),
(3, 'objet 3'),
(4, 'objet 4');
-- --------------------------------------------------------
--
-- Structure de la table `personnes`
--
CREATE TABLE IF NOT EXISTS `personnes` (
`id` int(11) NOT NULL auto_increment,
`nom` varchar(255) collate utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
--
-- Contenu de la table `personnes`
--
INSERT INTO `personnes` (`id`, `nom`) VALUES
(1, 'auteur'),
(2, 'auteur exclus'); |
Partager