Subversion Repositories eFlore/Applications.cel

Rev

Rev 2423 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2423 Rev 2426
Line 35... Line 35...
35
 
35
 
36
 
36
 
37
-- -----------------------------------------------------
37
-- -----------------------------------------------------
38
-- Table `cel_mots_cles_images_liaison`
-
 
39
-- -----------------------------------------------------
-
 
40
DROP TABLE IF EXISTS `cel_mots_cles_images_liaison` ;
38
-- Table `cel_mots_cles_images_liaison`
41
 
39
-- -----------------------------------------------------
42
CREATE  TABLE IF NOT EXISTS `cel_mots_cles_images_liaison` (
40
CREATE TABLE IF NOT EXISTS `cel_mots_cles_images_liaison` (
43
  `id_element_lie` INT NOT NULL ,
41
  `id_element_lie` INT NOT NULL,
-
 
42
  `id_mot_cle` INT NOT NULL,
44
  `id_mot_cle` INT NOT NULL ,
43
  PRIMARY KEY (`id_element_lie`, `id_mot_cle`),
Line 45... Line 44...
45
  PRIMARY KEY (`id_element_lie`, `id_mot_cle`) )
44
  INDEX `fk_cel_mots_cles_images_liaison_cel_arbre_mots_cles_images1_idx` (`id_mot_cle` ASC))
46
ENGINE = MyISAM;
45
ENGINE = MyISAM;
Line 72... Line 71...
72
 
71
 
73
 
72
 
74
-- -----------------------------------------------------
73
-- -----------------------------------------------------
75
-- Table `cel_obs_etendues`
-
 
76
-- -----------------------------------------------------
-
 
77
DROP TABLE IF EXISTS `cel_obs_etendues` ;
74
-- Table `cel_obs_etendues`
78
 
75
-- -----------------------------------------------------
79
CREATE  TABLE IF NOT EXISTS `cel_obs_etendues` (
76
CREATE TABLE IF NOT EXISTS `cel_obs_etendues` (
80
  `id_observation` BIGINT NOT NULL ,
77
  `id_observation` BIGINT NOT NULL,
81
  `cle` VARCHAR(255) NOT NULL COMMENT 'Clé du champ au format chat mot (sans accents).\nEx. : maCle, uneAutreCle' ,
78
  `cle` VARCHAR(255) NOT NULL COMMENT 'Clé du champ au format chat mot (sans accents).\nEx. : maCle, uneAutreCle',
82
  `valeur` TEXT NOT NULL COMMENT 'Valeur du champ.' ,
79
  `valeur` TEXT NOT NULL COMMENT 'Valeur du champ.',
83
  PRIMARY KEY (`id_observation`, `cle`) )
80
  PRIMARY KEY (`id_observation`, `cle`))
84
ENGINE = MyISAM
81
ENGINE = MyISAM
85
DEFAULT CHARACTER SET = utf8
82
DEFAULT CHARACTER SET = utf8
Line 100... Line 97...
100
 
97
 
101
 
98
 
102
-- -----------------------------------------------------
99
-- -----------------------------------------------------
-
 
100
-- Table `cel_mots_cles_obs_liaison`
-
 
101
-- -----------------------------------------------------
-
 
102
CREATE TABLE IF NOT EXISTS `cel_mots_cles_obs_liaison` (
-
 
103
  `id_element_lie` INT NOT NULL,
-
 
104
  `id_mot_cle` INT NOT NULL,
103
-- Table `cel_mots_cles_obs_liaison`
105
  PRIMARY KEY (`id_element_lie`, `id_mot_cle`),
Line 104... Line 106...
104
-- -----------------------------------------------------
106
  INDEX `fk_cel_mots_cles_obs_liaison_cel_arbre_mots_cles_obs1_idx` (`id_mot_cle` ASC))
105
ENGINE = MyISAM;
107
ENGINE = MyISAM;
Line 220... Line 222...
220
 
222
 
221
 
223
 
222
-- -----------------------------------------------------
224
-- -----------------------------------------------------
223
-- Table `cel_images_etendues`
-
 
224
-- -----------------------------------------------------
-
 
225
DROP TABLE IF EXISTS `cel_mots_cles_obs_liaison` ;
225
-- Table `cel_images_etendues`
226
 
226
-- -----------------------------------------------------
227
CREATE  TABLE IF NOT EXISTS `cel_mots_cles_obs_liaison` (
-
 
228
  `id_element_lie` INT NOT NULL ,
227
CREATE TABLE IF NOT EXISTS `cel_images_etendues` (
229
  `id_mot_cle` INT NOT NULL ,
228
  `id_observation` BIGINT NOT NULL,
230
  PRIMARY KEY (`id_element_lie`, `id_mot_cle`) )
-
 
231
CREATE TABLE IF NOT EXISTS `cel_mots_cles_obs_liaison` (
-
 
232
  `id_element_lie` INT NOT NULL,
229
  `cle` VARCHAR(255) NOT NULL COMMENT 'Clé du champ au format chat mot (sans accents).\nEx. : maCle, uneAutreCle',
233
  `id_mot_cle` INT NOT NULL,
230
  `valeur` TEXT NOT NULL COMMENT 'Valeur du champ.',
234
  PRIMARY KEY (`id_element_lie`, `id_mot_cle`),
231
  PRIMARY KEY (`id_observation`, `cle`),
235
  INDEX `fk_cel_mots_cles_obs_liaison_cel_arbre_mots_cles_obs1_idx` (`id_mot_cle` ASC))
232
  INDEX `id_observation` (`id_observation` ASC))
236
ENGINE = MyISAM
233
ENGINE = MyISAM
237
DEFAULT CHARACTER SET = utf8
234
DEFAULT CHARACTER SET = utf8
Line 238... Line 235...
238
COLLATE = utf8_general_ci
235
COLLATE = utf8_general_ci
-
 
236
COMMENT = 'Stockage d\'info supplémentaires sur une image';
-
 
237
 
-
 
238
 
-
 
239
-- -----------------------------------------------------
-
 
240
-- Table `cel_references`
-
 
241
-- -----------------------------------------------------
-
 
242
CREATE TABLE IF NOT EXISTS `cel_references` (
-
 
243
  `referentiel` INT NOT NULL,
-
 
244
  `num_nom` INT NOT NULL,
-
 
245
  `num_nom_retenu` INT NULL,
-
 
246
  `num_taxon` INT NOT NULL,
-
 
247
  `nom_sci` VARCHAR(500) NOT NULL,
-
 
248
  `auteur` VARCHAR(100) NULL,
-
 
249
  `nom_commun` VARCHAR(60) NULL,
-
 
250
  `catminat_code` VARCHAR(18) NULL,
-
 
251
  `ve_lumiere` INT(1) NULL,
-
 
252
  `ve_temperature` INT(1) NULL,
-
 
253
  `ve_continentalite` INT(1) NULL,
-
 
254
  `ve_humidite_atmos` INT(1) NULL,
-
 
255
  `ve_humidite_edaph` INT(2) NULL,
-
 
256
  `ve_reaction_sol` INT(1) NULL,
-
 
257
  `ve_nutriments_sol` INT(1) NULL,
-
 
258
  `ve_salinite` INT(1) NULL,
-
 
259
  `ve_texture_sol` INT(1) NULL,
-
 
260
  `ve_mat_org_sol` INT(1) NULL,
-
 
261
  `syntaxon` VARCHAR(255) NULL,
-
 
262
  PRIMARY KEY (`referentiel`, `num_nom`),
-
 
263
  INDEX `referentiel` (`referentiel` ASC),
-
 
264
  INDEX `num_nom` (`num_nom` ASC),
-
 
265
  INDEX `num_taxon` (`num_taxon` ASC),
-
 
266
  INDEX `num_nom_retenu` (`num_nom_retenu` ASC))
-
 
267
ENGINE = MyISAM
-
 
268
DEFAULT CHARACTER SET = utf8
-
 
269
COLLATE = utf8_general_ci;
-
 
270
 
-
 
271
 
-
 
272
-- -----------------------------------------------------
-
 
273
-- Table `cel_catalogue_champs_etendus`
-
 
274
-- -----------------------------------------------------
-
 
275
CREATE TABLE IF NOT EXISTS `cel_catalogue_champs_etendus` (
-
 
276
  `cle` VARCHAR(255) NOT NULL,
-
 
277
  `label` VARCHAR(255) NULL,
-
 
278
  `invisible` TINYINT(1) NOT NULL DEFAULT 0,
-
 
279
  `groupe` TINYINT(1) NOT NULL DEFAULT 0,
-
 
280
  `prive` TINYINT(1) NOT NULL DEFAULT 0,
-
 
281
  PRIMARY KEY (`cle`))
-
 
282
ENGINE = InnoDB
-
 
283
DEFAULT CHARACTER SET = utf8
239
COMMENT = 'Stockage d\'info supplémentaires sur une image';
284
COLLATE = utf8_general_ci;
240
 
285
 
-
 
286
 
-
 
287
-- -----------------------------------------------------
-
 
288
-- Table `cel_catalogue_champs_etendus_liaison`
-
 
289
-- -----------------------------------------------------
-
 
290
CREATE TABLE IF NOT EXISTS `cel_catalogue_champs_etendus_liaison` (
-
 
291
  `groupe` VARCHAR(255) NOT NULL,
-
 
292
  `champ` VARCHAR(255) NOT NULL,
-
 
293
  PRIMARY KEY (`groupe`, `champ`),
-
 
294
  INDEX `fk_cel_catalogue_champs_etendus_liaison_cel_catalogue_champ_idx` (`champ` ASC))
Line 241... Line 295...
241
 
295
ENGINE = InnoDB
242
-- -----------------------------------------------------
296
DEFAULT CHARACTER SET = utf8
243
-- Table `cel_catalogue_champs_etendus_liaison`
297
COLLATE = utf8_general_ci;
244
-- -----------------------------------------------------
298
 
Line 312... Line 366...
312
 
366
 
313
SET SQL_MODE=@OLD_SQL_MODE;
367
SET SQL_MODE=@OLD_SQL_MODE;
314
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
368
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
Line -... Line 369...
-
 
369
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
315
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
370
 
-
 
371
-- -----------------------------------------------------
-
 
372
-- Data for table `cel_catalogue_champs_etendus`
-
 
373
-- -----------------------------------------------------
-
 
374
START TRANSACTION;
-
 
375
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('adresse', ' Adresse',  0,  0,  0);
-
 
376
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardAligneNbre', ' Nombre d\'arbres d\'alignement',  0,  0,  0);
-
 
377
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardCirconferenceA1m', ' Circonférence à 1 m du sol (en m)',  0,  0,  0);
-
 
378
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardClasseCirconferenceA1m', ' Classe de circonférence à 1 m du sol (en m)',  0,  0,  0);
-
 
379
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardEntretientCoupe', ' Type d\'entretien',  0,  0,  0);
-
 
380
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardEtatSanitaire', ' État sanitaire',  0,  0,  0);
-
 
381
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardFormation', ' Type de formation',  0,  0,  0);
-
 
382
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardHauteurTete', ' Hauteur de la tête (en m)',  0,  0,  0);
-
 
383
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardPresenceCavite', ' Présence de cavités',  0,  0,  0);
-
 
384
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardPresenceSp', ' Présence d\'espèces sur l\'arbre',  0,  0,  0);
-
 
385
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('arbreTetardTailleType', ' Type de taille',  0,  0,  0);
-
 
386
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('ChampsArbresTetards', ' Champs du projet arbres tétards',  0,  1,  0);
-
 
387
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('ChampsFlorileges', ' Champs du projet florilèges',  0,  1,  0);
-
 
388
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('ChampsSauvages', ' Champs du projet Sauvages de ma rue',  0,  1,  0);
-
 
389
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('coauteurCourriel', ' Courriel du co-auteur',  0,  0,  1);
-
 
390
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('coauteurIntitule', ' Intitulé du co-auteur',  0,  0,  0);
-
 
391
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('Collecteur', ' Collecteur',  0,  0,  0);
-
 
392
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('Collecteurobservation', ' Collecteur de l\'observation',  0,  0,  0);
-
 
393
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('coordonneelambert93x', ' coordonneeLambert93X',  0,  0,  0);
-
 
394
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('coordonneelambert93y', ' coordonneeLambert93Y',  0,  0,  0);
-
 
395
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('dateArretTraitementPhyto', ' Date d\'arrêt des traitements',  0,  0,  0);
-
 
396
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('dateDerniereIntervention', ' Dernière intervention',  0,  0,  0);
-
 
397
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('Determinateur', ' Déterminateur',  0,  0,  0);
-
 
398
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('hauteurBatimentAvoisinant', ' Hauteur des bâtiments',  0,  0,  0);
-
 
399
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('hauteurPlante', ' Hauteur max. (en cm) de la plante',  0,  0,  0);
-
 
400
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('intensiteGestion', ' Intensité de gestion',  0,  0,  0);
-
 
401
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('itineraireGestion', ' Description de l\'itinéraire de gestion',  0,  0,  0);
-
 
402
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('latitudeDebutRue', ' Latitude du début de la rue',  0,  0,  0);
-
 
403
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('latitudeFinRue', ' Latitude de fin de la rue',  0,  0,  0);
-
 
404
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('longitudeDebutRue', ' Longitude du début de la rue',  0,  0,  0);
-
 
405
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('longitudeFinRue', ' Longitude de fin de la rue',  0,  0,  0);
-
 
406
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('perceptionRiverainMauvaise', ' Mauvaise perception par les riverains ?',  0,  0,  0);
-
 
407
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('perceptionTechnicien', ' Perceptions par l\'équipe',  0,  0,  0);
-
 
408
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('periodiciteTraitementPhyto', ' Utilisation de produits phytosanitaires',  0,  0,  0);
-
 
409
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('personneFonction', ' Fonction de l\'observateur',  0,  0,  0);
-
 
410
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('personneService', ' Service de l\'observateur',  0,  0,  0);
-
 
411
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('personneStructure', ' Structure de l\'observateur',  0,  0,  0);
-
 
412
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('resistanceTraitementPhyto', ' Résistance/Résilience',  0,  0,  0);
-
 
413
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('revetementSol', ' Revêtement de sol',  0,  0,  0);
-
 
414
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('typoUrbaine', ' Typologie',  0,  0,  0);
-
 
415
INSERT INTO `cel_catalogue_champs_etendus` (`cle`, `label`, `invisible`, `groupe`, `prive`) VALUES ('vitesseCroissance', ' Croissance',  0,  0,  0);
-
 
416
 
-
 
417
COMMIT;
-
 
418
 
-
 
419
 
-
 
420
-- -----------------------------------------------------
-
 
421
-- Data for table `cel_catalogue_champs_etendus_liaison`
-
 
422
-- -----------------------------------------------------
-
 
423
START TRANSACTION;
-
 
424
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' adresse');
-
 
425
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' Collecteur');
-
 
426
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' Collecteurobservation');
-
 
427
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' dateArretTraitementPhyto');
-
 
428
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' dateDerniereIntervention');
-
 
429
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' Determinateur');
-
 
430
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' hauteurBatimentAvoisinant');
-
 
431
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' hauteurPlante');
-
 
432
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' intensiteGestion');
-
 
433
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' itineraireGestion');
-
 
434
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' latitudeDebutRue');
-
 
435
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' latitudeFinRue');
-
 
436
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' longitudeDebutRue');
-
 
437
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' longitudeFinRue');
-
 
438
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' perceptionRiverainMauvaise');
-
 
439
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' perceptionTechnicien');
-
 
440
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' periodiciteTraitementPhyto');
-
 
441
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' personneFonction');
-
 
442
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' personneService');
-
 
443
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' personneStructure');
-
 
444
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' resistanceTraitementPhyto');
-
 
445
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' revetementSol');
-
 
446
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' typoUrbaine');
-
 
447
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsFlorileges', ' vitesseCroissance');
-
 
448
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsSauvages', ' adresse');
-
 
449
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsSauvages', ' latitudeDebutRue');
-
 
450
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsSauvages', ' latitudeFinRue');
-
 
451
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsSauvages', ' longitudeDebutRue');
-
 
452
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsSauvages', ' longitudeFinRue');
-
 
453
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardAligneNbre');
-
 
454
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardCirconferenceA1m');
-
 
455
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardClasseCirconferenceA1m');
-
 
456
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardEntretientCoupe');
-
 
457
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardEtatSanitaire');
-
 
458
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardFormation');
-
 
459
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardHauteurTete');
-
 
460
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardPresenceCavite');
-
 
461
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardPresenceSp');
-
 
462
INSERT INTO `cel_catalogue_champs_etendus_liaison` (`groupe`, `champ`) VALUES ('ChampsArbresTetards', ' arbreTetardTailleType');
Line 316... Line -...
316
 
-
 
317
DROP TABLE IF EXISTS `cel_images_etendues` ;
-
 
318
 
-
 
319
CREATE  TABLE IF NOT EXISTS `cel_images_etendues` (
-
 
320
  `id_observation` BIGINT NOT NULL ,
-