21 |
jpm |
1 |
--
|
|
|
2 |
-- Structure de la table `eflore_meta`
|
|
|
3 |
--
|
|
|
4 |
CREATE TABLE IF NOT EXISTS `eflore_meta` (
|
|
|
5 |
`guid` varchar(255) NOT NULL DEFAULT '',
|
|
|
6 |
`langue_meta` varchar(2) NOT NULL DEFAULT '',
|
|
|
7 |
`code` varchar(20) DEFAULT NULL,
|
|
|
8 |
`version` varchar(20) DEFAULT NULL,
|
|
|
9 |
`titre` varchar(255) DEFAULT NULL,
|
|
|
10 |
`description` text,
|
|
|
11 |
`mots_cles` varchar(510) DEFAULT NULL,
|
|
|
12 |
`citation` varchar(255) DEFAULT NULL,
|
|
|
13 |
`url_tech` varchar(510) DEFAULT NULL,
|
|
|
14 |
`url_projet` varchar(510) DEFAULT NULL,
|
|
|
15 |
`source` text,
|
|
|
16 |
`createurs` text,
|
|
|
17 |
`editeur` text,
|
|
|
18 |
`contributeurs` text,
|
|
|
19 |
`droits` text,
|
|
|
20 |
`url_droits` varchar(510) DEFAULT NULL,
|
|
|
21 |
`langue` varchar(255) DEFAULT NULL,
|
|
|
22 |
`date_creation` varchar(30) DEFAULT NULL,
|
|
|
23 |
`date_validite` varchar(255) DEFAULT NULL,
|
|
|
24 |
`couverture_spatiale` varchar(510) DEFAULT NULL,
|
|
|
25 |
`couverture_temporelle` varchar(510) DEFAULT NULL,
|
|
|
26 |
`web_services` varchar(255) NOT NULL,
|
|
|
27 |
PRIMARY KEY (`guid`,`langue_meta`)
|
|
|
28 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
29 |
|
|
|
30 |
--
|
|
|
31 |
-- Contenu de la table `eflore_meta`
|
|
|
32 |
--
|
|
|
33 |
INSERT INTO `eflore_meta` (`guid`, `langue_meta`, `code`, `version`, `titre`, `description`, `mots_cles`, `citation`, `url_tech`, `url_projet`, `source`, `createurs`, `editeur`, `contributeurs`, `droits`, `url_droits`, `langue`, `date_creation`, `date_validite`, `couverture_spatiale`, `couverture_temporelle`, `web_services`) VALUES
|
|
|
34 |
('urn:lsid:tela-botanica.org:eflore:2011', 'fr', 'commun', '2011', '', 'Le projet commun (ou eflore) contient toute les informations commune à tous les projets d''eflore. Notamment les ontologies utilisées dans les table des méta-données', 'eFlore, ontologies, flore, france', NULL, '', '', '', 'p.prenom=Jean-Pascal,p.nom=Milcent,p.courriel=jpm@tela-botanica.org', 'nom=Tela Botanica,guid=urn:lsid:tela-botanica.org,courriel=accueil@tela-botanica.org,telephone=+334 67 52 41 22,url.info=http://www.tela-botanica.org/page:association_tela_botanica,url.logo=http://www.tela-botanica.org/sites/accueil/generique/images/graphisme/logo_tela_fond_blanc.png,type=organisation,acronyme=TB,adresse=Association Tela Botanica - Institut de Botanique - 167 rue Auguste Broussonnet 34090 MONTPELLIER FRANCE,latitude.wgs84=43.615892,longitude.wgs84=3.871736,contact.prenom=Jean-Pascal,contact.nom=MILCENT,contact.courriel=jpm@tela-botanica.org,contact.role=administrateur des données', NULL, NULL, NULL, 'fr', '2011-08-09', NULL, 'iso-3166-1.id=FX;', NULL, 'Ontologies:0.1;Meta-donnees:0.1');
|
|
|
35 |
|
|
|
36 |
--
|
|
|
37 |
-- Structure de la table `eflore_ontologies_v2011`
|
|
|
38 |
--
|
|
|
39 |
CREATE TABLE IF NOT EXISTS `eflore_ontologies_v2011` (
|
|
|
40 |
`id` int(1) NOT NULL DEFAULT '0',
|
|
|
41 |
`classe_id` int(1) DEFAULT NULL,
|
|
|
42 |
`nom` varchar(26) DEFAULT NULL,
|
|
|
43 |
`description` varchar(47) DEFAULT NULL,
|
|
|
44 |
`code` varchar(100) DEFAULT NULL,
|
|
|
45 |
`complements` varchar(10) DEFAULT NULL
|
|
|
46 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|