Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1811 Rev 1843
Line 256... Line 256...
256
  `abondance` VARCHAR(50) NULL DEFAULT NULL ,
256
  `abondance` VARCHAR(50) NULL DEFAULT NULL ,
257
  `certitude` VARCHAR(255) NULL DEFAULT NULL ,
257
  `certitude` VARCHAR(255) NULL DEFAULT NULL ,
258
  `phenologie` VARCHAR(255) NULL DEFAULT NULL ,
258
  `phenologie` VARCHAR(255) NULL DEFAULT NULL ,
259
  `code_insee_calcule` VARCHAR(5) NULL DEFAULT NULL COMMENT 'Code INSEE calculé par un scrip CRON.' ,
259
  `code_insee_calcule` VARCHAR(5) NULL DEFAULT NULL COMMENT 'Code INSEE calculé par un scrip CRON.' ,
260
  PRIMARY KEY (`id_observation`) ,
260
  PRIMARY KEY (`id_observation`) ,
261
  INDEX `id_obs` (`ordre` ASC, `ce_utilisateur` ASC) ,
261
  UNIQUE INDEX `id_obs` (`ce_utilisateur`(10) ASC, `ordre` ASC) ,
262
  INDEX `date_creation` (`ce_utilisateur` ASC, `date_creation` ASC) ,
262
  INDEX `date_creation` (`ce_utilisateur`(10) ASC, `date_creation` ASC) ,
263
  INDEX `coordonnees` (`latitude` ASC, `longitude` ASC) ,
263
  INDEX `coordonnees` (`latitude` ASC, `longitude` ASC) ,
264
  INDEX `nom_retenu` (`nom_ret` ASC) ,
264
  INDEX `nom_retenu` (`nom_ret` ASC) ,
265
  INDEX `date_observation` (`date_observation` ASC) ,
265
  INDEX `date_observation` (`date_observation` ASC) ,
266
  INDEX `nom_referentiel` (`nom_referentiel`(5) ASC) )
266
  INDEX `nom_referentiel` (`nom_referentiel`(5) ASC) )
267
ENGINE = MyISAM
267
ENGINE = MyISAM