Changeset 880 for pmb4.2/trunk/fuentes/pmb
- Timestamp:
- Mar 16, 2016, 11:45:32 AM (5 years ago)
- Location:
- pmb4.2/trunk/fuentes/pmb/lliurex
- Files:
-
- 14 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pmb4.2/trunk/fuentes/pmb/lliurex/pmb4_base.sql
r863 r880 1 1 -- +-------------------------------------------------+ 2 -- © 2002-2004 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net)2 -- © 2002-2004 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net) 3 3 -- +-------------------------------------------------+ 4 4 -- $Id: bibli.sql,v 1.73 2015-05-18 09:27:43 dgoron Exp $ … … 8 8 -- Host: localhost Database: pmb420 9 9 -- ------------------------------------------------------ 10 -- Server version 5.5.25-MariaDB11 12 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";13 14 10 -- Server version 5.5.28-MariaDB 15 11 … … 25 21 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; 26 22 27 28 29 -- 30 -- Base de datos: `pmb4.2 v5.19` 31 -- 32 33 -- -------------------------------------------------------- 34 35 -- 36 -- Estructura de tabla para la tabla `abo_liste_lecture` 23 -- 24 -- Table structure for table `abo_liste_lecture` 37 25 -- 38 26 … … 40 28 /*!40101 SET @saved_cs_client = @@character_set_client */; 41 29 /*!40101 SET character_set_client = utf8 */; 42 CREATE TABLE IF NOT EXISTS`abo_liste_lecture` (30 CREATE TABLE `abo_liste_lecture` ( 43 31 `num_empr` int(8) unsigned NOT NULL DEFAULT '0', 44 32 `num_liste` int(8) unsigned NOT NULL DEFAULT '0', … … 48 36 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 49 37 /*!40101 SET character_set_client = @saved_cs_client */; 50 -- 51 -- Volcar la base de datos para la tabla `abo_liste_lecture` 52 -- 53 54 55 -- -------------------------------------------------------- 56 57 -- 58 -- Estructura de tabla para la tabla `abts_abts` 38 39 -- 40 -- Dumping data for table `abo_liste_lecture` 41 -- 42 43 LOCK TABLES `abo_liste_lecture` WRITE; 44 /*!40000 ALTER TABLE `abo_liste_lecture` DISABLE KEYS */; 45 /*!40000 ALTER TABLE `abo_liste_lecture` ENABLE KEYS */; 46 UNLOCK TABLES; 47 48 -- 49 -- Table structure for table `abts_abts` 59 50 -- 60 51 61 52 DROP TABLE IF EXISTS `abts_abts`; 62 63 /*!40101 SET @saved_cs_client = @@character_set_client */; 64 /*!40101 SET character_set_client = utf8 */; 65 CREATE TABLE IF NOT EXISTS `abts_abts` ( 53 /*!40101 SET @saved_cs_client = @@character_set_client */; 54 /*!40101 SET character_set_client = utf8 */; 55 CREATE TABLE `abts_abts` ( 66 56 `abt_id` int(10) unsigned NOT NULL AUTO_INCREMENT, 67 57 `abt_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 91 81 92 82 -- 93 -- Volcar la base de datos para la tabla `abts_abts` 94 -- 95 96 97 -- -------------------------------------------------------- 98 99 -- 100 -- Estructura de tabla para la tabla `abts_abts_modeles` 83 -- Dumping data for table `abts_abts` 84 -- 85 86 LOCK TABLES `abts_abts` WRITE; 87 /*!40000 ALTER TABLE `abts_abts` DISABLE KEYS */; 88 /*!40000 ALTER TABLE `abts_abts` ENABLE KEYS */; 89 UNLOCK TABLES; 90 91 -- 92 -- Table structure for table `abts_abts_modeles` 101 93 -- 102 94 … … 104 96 /*!40101 SET @saved_cs_client = @@character_set_client */; 105 97 /*!40101 SET character_set_client = utf8 */; 106 CREATE TABLE IF NOT EXISTS`abts_abts_modeles` (98 CREATE TABLE `abts_abts_modeles` ( 107 99 `modele_id` int(11) NOT NULL DEFAULT '0', 108 100 `abt_id` int(11) NOT NULL DEFAULT '0', … … 113 105 `critique` int(11) NOT NULL DEFAULT '0', 114 106 `num_statut_general` smallint(5) unsigned NOT NULL DEFAULT '0', 115 PRIMARY KEY (`modele_id,abt_id`) 116 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 117 /*!40101 SET character_set_client = @saved_cs_client */; 118 -- 119 -- Volcar la base de datos para la tabla `abts_abts_modeles` 120 -- 121 122 123 -- -------------------------------------------------------- 124 125 -- 126 -- Estructura de tabla para la tabla `abts_grille_abt` 107 PRIMARY KEY (`modele_id`,`abt_id`) 108 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 109 /*!40101 SET character_set_client = @saved_cs_client */; 110 111 -- 112 -- Dumping data for table `abts_abts_modeles` 113 -- 114 115 LOCK TABLES `abts_abts_modeles` WRITE; 116 /*!40000 ALTER TABLE `abts_abts_modeles` DISABLE KEYS */; 117 /*!40000 ALTER TABLE `abts_abts_modeles` ENABLE KEYS */; 118 UNLOCK TABLES; 119 120 -- 121 -- Table structure for table `abts_grille_abt` 127 122 -- 128 123 … … 130 125 /*!40101 SET @saved_cs_client = @@character_set_client */; 131 126 /*!40101 SET character_set_client = utf8 */; 132 CREATE TABLE IF NOT EXISTS`abts_grille_abt` (127 CREATE TABLE `abts_grille_abt` ( 133 128 `id_bull` int(11) NOT NULL AUTO_INCREMENT, 134 129 `num_abt` int(10) unsigned NOT NULL DEFAULT '0', … … 141 136 `state` int(11) NOT NULL DEFAULT '0', 142 137 PRIMARY KEY (`id_bull`), 143 KEY num_abt (`num_abt`) 144 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 145 /*!40101 SET character_set_client = @saved_cs_client */; 146 -- 147 -- Volcar la base de datos para la tabla `abts_grille_abt` 148 -- 149 150 151 -- -------------------------------------------------------- 152 153 -- 154 -- Estructura de tabla para la tabla `abts_grille_modele` 138 KEY `num_abt` (`num_abt`) 139 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 140 /*!40101 SET character_set_client = @saved_cs_client */; 141 142 -- 143 -- Dumping data for table `abts_grille_abt` 144 -- 145 146 LOCK TABLES `abts_grille_abt` WRITE; 147 /*!40000 ALTER TABLE `abts_grille_abt` DISABLE KEYS */; 148 /*!40000 ALTER TABLE `abts_grille_abt` ENABLE KEYS */; 149 UNLOCK TABLES; 150 151 -- 152 -- Table structure for table `abts_grille_modele` 155 153 -- 156 154 … … 158 156 /*!40101 SET @saved_cs_client = @@character_set_client */; 159 157 /*!40101 SET character_set_client = utf8 */; 160 CREATE TABLE IF NOT EXISTS`abts_grille_modele` (158 CREATE TABLE `abts_grille_modele` ( 161 159 `num_modele` int(10) unsigned NOT NULL DEFAULT '0', 162 160 `date_parution` date NOT NULL DEFAULT '0000-00-00', … … 169 167 /*!40101 SET character_set_client = @saved_cs_client */; 170 168 171 172 -- 173 -- Volcar la base de datos para la tabla `abts_grille_modele` 174 -- 175 176 177 -- -------------------------------------------------------- 178 179 -- 180 -- Estructura de tabla para la tabla `abts_modeles` 169 -- 170 -- Dumping data for table `abts_grille_modele` 171 -- 172 173 LOCK TABLES `abts_grille_modele` WRITE; 174 /*!40000 ALTER TABLE `abts_grille_modele` DISABLE KEYS */; 175 /*!40000 ALTER TABLE `abts_grille_modele` ENABLE KEYS */; 176 UNLOCK TABLES; 177 178 -- 179 -- Table structure for table `abts_modeles` 181 180 -- 182 181 … … 184 183 /*!40101 SET @saved_cs_client = @@character_set_client */; 185 184 /*!40101 SET character_set_client = utf8 */; 186 CREATE TABLE IF NOT EXISTS`abts_modeles` (185 CREATE TABLE `abts_modeles` ( 187 186 `modele_id` int(10) unsigned NOT NULL AUTO_INCREMENT, 188 187 `modele_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 226 225 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 227 226 /*!40101 SET character_set_client = @saved_cs_client */; 228 -- 229 -- Volcar la base de datos para la tabla `abts_modeles` 230 -- 231 232 233 -- -------------------------------------------------------- 234 235 -- 236 -- Estructura de tabla para la tabla `abts_periodicites` 227 228 -- 229 -- Dumping data for table `abts_modeles` 230 -- 231 232 LOCK TABLES `abts_modeles` WRITE; 233 /*!40000 ALTER TABLE `abts_modeles` DISABLE KEYS */; 234 /*!40000 ALTER TABLE `abts_modeles` ENABLE KEYS */; 235 UNLOCK TABLES; 236 237 -- 238 -- Table structure for table `abts_periodicites` 237 239 -- 238 240 … … 240 242 /*!40101 SET @saved_cs_client = @@character_set_client */; 241 243 /*!40101 SET character_set_client = utf8 */; 242 CREATE TABLE IF NOT EXISTS`abts_periodicites` (244 CREATE TABLE `abts_periodicites` ( 243 245 `periodicite_id` int(10) unsigned NOT NULL AUTO_INCREMENT, 244 246 `libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 253 255 254 256 -- 255 -- Volcar la base de datos para la tabla `abts_periodicites` 256 -- 257 258 INSERT INTO `abts_periodicites` (`periodicite_id`, `libelle`, `duree`, `unite`, `retard_periodicite`, `seuil_periodicite`, `consultation_duration`) VALUES 259 (5, 'Bimestriel', 2, 1, 30, 10, 0), 260 (4, 'Mensuel', 1, 1, 15, 5, 0), 261 (3, 'Bimensuel', 14, 0, 10, 5, 0), 262 (2, 'Hebdomadaire', 7, 0, 4, 2, 0), 263 (1, 'Quotidien', 1, 0, 2, 1, 0), 264 (6, 'Trimestriel', 3, 1, 30, 10, 0), 265 (7, 'Quadrimestriel', 4, 1, 30, 10, 0), 266 (8, 'Semestriel', 6, 1, 30, 10, 0), 267 (9, 'Annuel', 1, 2, 30, 10, 0); 268 269 -- -------------------------------------------------------- 270 271 -- 272 -- Estructura de tabla para la tabla `acces_profiles` 257 -- Dumping data for table `abts_periodicites` 258 -- 259 260 LOCK TABLES `abts_periodicites` WRITE; 261 /*!40000 ALTER TABLE `abts_periodicites` DISABLE KEYS */; 262 INSERT INTO `abts_periodicites` VALUES (5,'Bimestriel',2,1,30,10,0),(4,'Mensuel',1,1,15,5,0),(3,'Bimensuel',14,0,10,5,0),(2,'Hebdomadaire',7,0,4,2,0),(1,'Quotidien',1,0,2,1,0),(6,'Trimestriel',3,1,30,10,0),(7,'Quadrimestriel',4,1,30,10,0),(8,'Semestriel',6,1,30,10,0),(9,'Annuel',1,2,30,10,0); 263 /*!40000 ALTER TABLE `abts_periodicites` ENABLE KEYS */; 264 UNLOCK TABLES; 265 266 -- 267 -- Table structure for table `acces_profiles` 273 268 -- 274 269 … … 276 271 /*!40101 SET @saved_cs_client = @@character_set_client */; 277 272 /*!40101 SET character_set_client = utf8 */; 278 CREATE TABLE IF NOT EXISTS`acces_profiles` (273 CREATE TABLE `acces_profiles` ( 279 274 `prf_id` int(2) unsigned NOT NULL AUTO_INCREMENT, 280 275 `prf_type` int(1) unsigned NOT NULL DEFAULT '1', … … 292 287 293 288 -- 294 -- Volcar la base de datos para la tabla `acces_profiles` 295 -- 296 297 298 -- -------------------------------------------------------- 299 300 -- 301 -- Estructura de tabla para la tabla `acces_rights` 289 -- Dumping data for table `acces_profiles` 290 -- 291 292 LOCK TABLES `acces_profiles` WRITE; 293 /*!40000 ALTER TABLE `acces_profiles` DISABLE KEYS */; 294 /*!40000 ALTER TABLE `acces_profiles` ENABLE KEYS */; 295 UNLOCK TABLES; 296 297 -- 298 -- Table structure for table `acces_rights` 302 299 -- 303 300 … … 305 302 /*!40101 SET @saved_cs_client = @@character_set_client */; 306 303 /*!40101 SET character_set_client = utf8 */; 307 CREATE TABLE IF NOT EXISTS`acces_rights` (304 CREATE TABLE `acces_rights` ( 308 305 `dom_num` int(2) unsigned NOT NULL DEFAULT '0', 309 306 `usr_prf_num` int(2) unsigned NOT NULL DEFAULT '0', … … 318 315 319 316 -- 320 -- Volcar la base de datos para la tabla `acces_rights` 321 -- 322 323 324 -- -------------------------------------------------------- 325 326 -- 327 -- Estructura de tabla para la tabla `actes` 317 -- Dumping data for table `acces_rights` 318 -- 319 320 LOCK TABLES `acces_rights` WRITE; 321 /*!40000 ALTER TABLE `acces_rights` DISABLE KEYS */; 322 /*!40000 ALTER TABLE `acces_rights` ENABLE KEYS */; 323 UNLOCK TABLES; 324 325 -- 326 -- Table structure for table `actes` 328 327 -- 329 328 … … 331 330 /*!40101 SET @saved_cs_client = @@character_set_client */; 332 331 /*!40101 SET character_set_client = utf8 */; 333 CREATE TABLE IF NOT EXISTS`actes` (332 CREATE TABLE `actes` ( 334 333 `id_acte` int(8) unsigned NOT NULL AUTO_INCREMENT, 335 334 `date_acte` date NOT NULL DEFAULT '0000-00-00', … … 360 359 /*!40101 SET character_set_client = @saved_cs_client */; 361 360 362 363 -- 364 -- Volcar la base de datos para la tabla `actes` 365 -- 366 367 368 -- -------------------------------------------------------- 369 370 -- 371 -- Estructura de tabla para la tabla `admin_session` 361 -- 362 -- Dumping data for table `actes` 363 -- 364 365 LOCK TABLES `actes` WRITE; 366 /*!40000 ALTER TABLE `actes` DISABLE KEYS */; 367 /*!40000 ALTER TABLE `actes` ENABLE KEYS */; 368 UNLOCK TABLES; 369 370 -- 371 -- Table structure for table `admin_session` 372 372 -- 373 373 … … 375 375 /*!40101 SET @saved_cs_client = @@character_set_client */; 376 376 /*!40101 SET character_set_client = utf8 */; 377 CREATE TABLE IF NOT EXISTS`admin_session` (377 CREATE TABLE `admin_session` ( 378 378 `userid` int(10) unsigned NOT NULL DEFAULT '0', 379 379 `session` blob, … … 383 383 384 384 -- 385 -- Volcar la base de datos para la tabla `admin_session` 386 -- 387 388 389 -- -------------------------------------------------------- 390 391 -- 392 -- Estructura de tabla para la tabla `analysis` 385 -- Dumping data for table `admin_session` 386 -- 387 388 LOCK TABLES `admin_session` WRITE; 389 /*!40000 ALTER TABLE `admin_session` DISABLE KEYS */; 390 /*!40000 ALTER TABLE `admin_session` ENABLE KEYS */; 391 UNLOCK TABLES; 392 393 -- 394 -- Table structure for table `analysis` 393 395 -- 394 396 … … 396 398 /*!40101 SET @saved_cs_client = @@character_set_client */; 397 399 /*!40101 SET character_set_client = utf8 */; 398 CREATE TABLE IF NOT EXISTS`analysis` (400 CREATE TABLE `analysis` ( 399 401 `analysis_bulletin` int(8) unsigned NOT NULL DEFAULT '0', 400 402 `analysis_notice` int(8) unsigned NOT NULL DEFAULT '0', … … 403 405 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 404 406 /*!40101 SET character_set_client = @saved_cs_client */; 405 -- 406 -- Volcar la base de datos para la tabla `analysis` 407 -- 408 409 410 -- -------------------------------------------------------- 411 412 -- 413 -- Estructura de tabla para la tabla `arch_emplacement` 407 408 -- 409 -- Dumping data for table `analysis` 410 -- 411 412 LOCK TABLES `analysis` WRITE; 413 /*!40000 ALTER TABLE `analysis` DISABLE KEYS */; 414 /*!40000 ALTER TABLE `analysis` ENABLE KEYS */; 415 UNLOCK TABLES; 416 417 -- 418 -- Table structure for table `arch_emplacement` 414 419 -- 415 420 … … 417 422 /*!40101 SET @saved_cs_client = @@character_set_client */; 418 423 /*!40101 SET character_set_client = utf8 */; 419 CREATE TABLE IF NOT EXISTS`arch_emplacement` (424 CREATE TABLE `arch_emplacement` ( 420 425 `archempla_id` int(8) unsigned NOT NULL AUTO_INCREMENT, 421 426 `archempla_libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 422 427 PRIMARY KEY (`archempla_id`) 423 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 424 /*!40101 SET character_set_client = @saved_cs_client */; 425 426 -- 427 -- Volcar la base de datos para la tabla `arch_emplacement` 428 -- 429 430 INSERT INTO `arch_emplacement` (`archempla_id`, `archempla_libelle`) VALUES 431 (1, 'Présentoir'); 432 433 -- -------------------------------------------------------- 434 435 -- 436 -- Estructura de tabla para la tabla `arch_statut` 428 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 429 /*!40101 SET character_set_client = @saved_cs_client */; 430 431 -- 432 -- Dumping data for table `arch_emplacement` 433 -- 434 435 LOCK TABLES `arch_emplacement` WRITE; 436 /*!40000 ALTER TABLE `arch_emplacement` DISABLE KEYS */; 437 INSERT INTO `arch_emplacement` VALUES (1,'Présentoir'); 438 /*!40000 ALTER TABLE `arch_emplacement` ENABLE KEYS */; 439 UNLOCK TABLES; 440 441 -- 442 -- Table structure for table `arch_statut` 437 443 -- 438 444 … … 440 446 /*!40101 SET @saved_cs_client = @@character_set_client */; 441 447 /*!40101 SET character_set_client = utf8 */; 442 CREATE TABLE IF NOT EXISTS`arch_statut` (448 CREATE TABLE `arch_statut` ( 443 449 `archstatut_id` int(8) NOT NULL AUTO_INCREMENT, 444 450 `archstatut_gestion_libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 449 455 `archstatut_class_html` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 450 456 PRIMARY KEY (`archstatut_id`) 451 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 452 /*!40101 SET character_set_client = @saved_cs_client */; 453 454 -- 455 -- Volcar la base de datos para la tabla `arch_statut` 456 -- 457 458 INSERT INTO `arch_statut` (`archstatut_id`, `archstatut_gestion_libelle`, `archstatut_opac_libelle`, `archstatut_visible_opac`, `archstatut_visible_opac_abon`, `archstatut_visible_gestion`, `archstatut_class_html`) VALUES 459 (1, 'Consultable sur place', 'Consultable sur place', 1, 0, 1, 'statutnot2'); 460 461 -- -------------------------------------------------------- 462 463 -- 464 -- Estructura de tabla para la tabla `arch_type` 457 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 458 /*!40101 SET character_set_client = @saved_cs_client */; 459 460 -- 461 -- Dumping data for table `arch_statut` 462 -- 463 464 LOCK TABLES `arch_statut` WRITE; 465 /*!40000 ALTER TABLE `arch_statut` DISABLE KEYS */; 466 INSERT INTO `arch_statut` VALUES (1,'Consultable sur place','Consultable sur place',1,0,1,'statutnot2'); 467 /*!40000 ALTER TABLE `arch_statut` ENABLE KEYS */; 468 UNLOCK TABLES; 469 470 -- 471 -- Table structure for table `arch_type` 465 472 -- 466 473 … … 468 475 /*!40101 SET @saved_cs_client = @@character_set_client */; 469 476 /*!40101 SET character_set_client = utf8 */; 470 CREATE TABLE IF NOT EXISTS`arch_type` (477 CREATE TABLE `arch_type` ( 471 478 `archtype_id` int(8) unsigned NOT NULL AUTO_INCREMENT, 472 479 `archtype_libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 473 480 PRIMARY KEY (`archtype_id`) 474 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;475 /*!40101 SET character_set_client = @saved_cs_client */; 476 ; 477 478 -- 479 -- Volcar la base de datos para la tabla `arch_type`480 -- 481 482 INSERT INTO `arch_type` (`archtype_id`, `archtype_libelle`) VALUES 483 (1,'Revue');484 485 -- -------------------------------------------------------- 486 487 -- 488 -- Estructura de tabla para la tabla`audit`481 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 482 /*!40101 SET character_set_client = @saved_cs_client */; 483 484 -- 485 -- Dumping data for table `arch_type` 486 -- 487 488 LOCK TABLES `arch_type` WRITE; 489 /*!40000 ALTER TABLE `arch_type` DISABLE KEYS */; 490 INSERT INTO `arch_type` VALUES (1,'Revue'); 491 /*!40000 ALTER TABLE `arch_type` ENABLE KEYS */; 492 UNLOCK TABLES; 493 494 -- 495 -- Table structure for table `audit` 489 496 -- 490 497 … … 492 499 /*!40101 SET @saved_cs_client = @@character_set_client */; 493 500 /*!40101 SET character_set_client = utf8 */; 494 CREATE TABLE IF NOT EXISTS`audit` (501 CREATE TABLE `audit` ( 495 502 `type_obj` int(1) NOT NULL DEFAULT '0', 496 503 `object_id` int(10) unsigned NOT NULL DEFAULT '0', … … 506 513 KEY `type_modif` (`type_modif`) 507 514 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 508 -- 509 -- Volcar la base de datos para la tabla `audit` 510 -- 511 512 513 -- -------------------------------------------------------- 514 515 -- 516 -- Estructura de tabla para la tabla `aut_link` 515 /*!40101 SET character_set_client = @saved_cs_client */; 516 517 -- 518 -- Dumping data for table `audit` 519 -- 520 521 LOCK TABLES `audit` WRITE; 522 /*!40000 ALTER TABLE `audit` DISABLE KEYS */; 523 /*!40000 ALTER TABLE `audit` ENABLE KEYS */; 524 UNLOCK TABLES; 525 526 -- 527 -- Table structure for table `aut_link` 517 528 -- 518 529 … … 520 531 /*!40101 SET @saved_cs_client = @@character_set_client */; 521 532 /*!40101 SET character_set_client = utf8 */; 522 CREATE TABLE IF NOT EXISTS`aut_link` (533 CREATE TABLE `aut_link` ( 523 534 `aut_link_from` int(2) NOT NULL DEFAULT '0', 524 535 `aut_link_from_num` int(11) NOT NULL DEFAULT '0', … … 533 544 534 545 -- 535 -- Volcar la base de datos para la tabla `aut_link` 536 -- 537 538 539 -- -------------------------------------------------------- 540 541 -- 542 -- Estructura de tabla para la tabla `author_custom` 546 -- Dumping data for table `aut_link` 547 -- 548 549 LOCK TABLES `aut_link` WRITE; 550 /*!40000 ALTER TABLE `aut_link` DISABLE KEYS */; 551 /*!40000 ALTER TABLE `aut_link` ENABLE KEYS */; 552 UNLOCK TABLES; 553 554 -- 555 -- Table structure for table `author_custom` 543 556 -- 544 557 … … 546 559 /*!40101 SET @saved_cs_client = @@character_set_client */; 547 560 /*!40101 SET character_set_client = utf8 */; 548 CREATE TABLE IF NOT EXISTS`author_custom` (561 CREATE TABLE `author_custom` ( 549 562 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 550 563 `num_type` int(10) unsigned NOT NULL DEFAULT '0', … … 567 580 568 581 -- 569 -- Volcar la base de datos para la tabla `aut_link` 570 -- 571 572 -- -------------------------------------------------------- 573 574 -- 575 -- Estructura de tabla para la tabla `author_custom_lists` 582 -- Dumping data for table `author_custom` 583 -- 584 585 LOCK TABLES `author_custom` WRITE; 586 /*!40000 ALTER TABLE `author_custom` DISABLE KEYS */; 587 /*!40000 ALTER TABLE `author_custom` ENABLE KEYS */; 588 UNLOCK TABLES; 589 590 -- 591 -- Table structure for table `author_custom_lists` 576 592 -- 577 593 … … 579 595 /*!40101 SET @saved_cs_client = @@character_set_client */; 580 596 /*!40101 SET character_set_client = utf8 */; 581 CREATE TABLE IF NOT EXISTS`author_custom_lists` (597 CREATE TABLE `author_custom_lists` ( 582 598 `author_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 583 599 `author_custom_list_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, … … 590 606 591 607 -- 592 -- Volcar la base de datos para la tabla `author_custom_lists` 593 -- 594 595 -- -------------------------------------------------------- 596 597 -- 598 -- Estructura de tabla para la tabla `author_custom_values` 608 -- Dumping data for table `author_custom_lists` 609 -- 610 611 LOCK TABLES `author_custom_lists` WRITE; 612 /*!40000 ALTER TABLE `author_custom_lists` DISABLE KEYS */; 613 /*!40000 ALTER TABLE `author_custom_lists` ENABLE KEYS */; 614 UNLOCK TABLES; 615 616 -- 617 -- Table structure for table `author_custom_values` 599 618 -- 600 619 … … 602 621 /*!40101 SET @saved_cs_client = @@character_set_client */; 603 622 /*!40101 SET character_set_client = utf8 */; 604 CREATE TABLE IF NOT EXISTS`author_custom_values` (623 CREATE TABLE `author_custom_values` ( 605 624 `author_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 606 625 `author_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', … … 611 630 `author_custom_float` float DEFAULT NULL, 612 631 KEY `editorial_custom_champ` (`author_custom_champ`), 613 KEY `editorial_custom_origine` (`author_custom_origine`) 614 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 615 /*!40101 SET character_set_client = @saved_cs_client */; 616 617 -- 618 -- Volcar la base de datos para la tabla `author_custom_values` 619 -- 620 621 622 -- -------------------------------------------------------- 623 -- 624 -- Estructura de tabla para la tabla `authorities_sources` 632 KEY `editorial_custom_origine` (`author_custom_origine`), 633 KEY `i_acv_st` (`author_custom_small_text`), 634 KEY `i_acv_t` (`author_custom_text`(255)), 635 KEY `i_acv_i` (`author_custom_integer`), 636 KEY `i_acv_d` (`author_custom_date`), 637 KEY `i_acv_f` (`author_custom_float`) 638 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 639 /*!40101 SET character_set_client = @saved_cs_client */; 640 641 -- 642 -- Dumping data for table `author_custom_values` 643 -- 644 645 LOCK TABLES `author_custom_values` WRITE; 646 /*!40000 ALTER TABLE `author_custom_values` DISABLE KEYS */; 647 /*!40000 ALTER TABLE `author_custom_values` ENABLE KEYS */; 648 UNLOCK TABLES; 649 650 -- 651 -- Table structure for table `authorities_sources` 625 652 -- 626 653 … … 628 655 /*!40101 SET @saved_cs_client = @@character_set_client */; 629 656 /*!40101 SET character_set_client = utf8 */; 630 CREATE TABLE IF NOT EXISTS`authorities_sources` (657 CREATE TABLE `authorities_sources` ( 631 658 `id_authority_source` int(10) unsigned NOT NULL AUTO_INCREMENT, 632 659 `num_authority` int(10) unsigned NOT NULL DEFAULT '0', … … 640 667 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 641 668 /*!40101 SET character_set_client = @saved_cs_client */; 642 -- 643 -- Volcar la base de datos para la tabla `authorities_sources` 644 -- 645 646 647 -- -------------------------------------------------------- 648 649 -- 650 -- Estructura de tabla para la tabla `authors` 669 670 -- 671 -- Dumping data for table `authorities_sources` 672 -- 673 674 LOCK TABLES `authorities_sources` WRITE; 675 /*!40000 ALTER TABLE `authorities_sources` DISABLE KEYS */; 676 /*!40000 ALTER TABLE `authorities_sources` ENABLE KEYS */; 677 UNLOCK TABLES; 678 679 -- 680 -- Table structure for table `authors` 651 681 -- 652 682 … … 654 684 /*!40101 SET @saved_cs_client = @@character_set_client */; 655 685 /*!40101 SET character_set_client = utf8 */; 656 CREATE TABLE IF NOT EXISTS`authors` (686 CREATE TABLE `authors` ( 657 687 `author_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, 658 688 `author_type` enum('70','71','72') COLLATE utf8_unicode_ci NOT NULL DEFAULT '70', … … 678 708 679 709 -- 680 -- Volcar la base de datos para la tabla `authors` 681 -- 682 683 -- -------------------------------------------------------- 684 685 -- 686 -- Estructura de tabla para la tabla `authperso` 710 -- Dumping data for table `authors` 711 -- 712 713 LOCK TABLES `authors` WRITE; 714 /*!40000 ALTER TABLE `authors` DISABLE KEYS */; 715 /*!40000 ALTER TABLE `authors` ENABLE KEYS */; 716 UNLOCK TABLES; 717 718 -- 719 -- Table structure for table `authperso` 687 720 -- 688 721 … … 690 723 /*!40101 SET @saved_cs_client = @@character_set_client */; 691 724 /*!40101 SET character_set_client = utf8 */; 692 CREATE TABLE IF NOT EXISTS`authperso` (725 CREATE TABLE `authperso` ( 693 726 `id_authperso` int(10) unsigned NOT NULL AUTO_INCREMENT, 694 727 `authperso_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 705 738 /*!40101 SET character_set_client = @saved_cs_client */; 706 739 707 708 -- -------------------------------------------------------- 709 710 711 -- 712 -- Estructura de tabla para la tabla `authperso_authorities` 713 -- 740 -- 741 -- Dumping data for table `authperso` 742 -- 743 744 LOCK TABLES `authperso` WRITE; 745 /*!40000 ALTER TABLE `authperso` DISABLE KEYS */; 746 /*!40000 ALTER TABLE `authperso` ENABLE KEYS */; 747 UNLOCK TABLES; 748 749 -- 750 -- Table structure for table `authperso_authorities` 751 -- 752 714 753 DROP TABLE IF EXISTS `authperso_authorities`; 715 716 /*!40101 SET @saved_cs_client = @@character_set_client */; 717 /*!40101 SET character_set_client = utf8 */; 718 CREATE TABLE IF NOT EXISTS `authperso_authorities` ( 754 /*!40101 SET @saved_cs_client = @@character_set_client */; 755 /*!40101 SET character_set_client = utf8 */; 756 CREATE TABLE `authperso_authorities` ( 719 757 `id_authperso_authority` int(10) unsigned NOT NULL AUTO_INCREMENT, 720 758 `authperso_authority_authperso_num` int(10) unsigned NOT NULL DEFAULT '0', … … 725 763 /*!40101 SET character_set_client = @saved_cs_client */; 726 764 727 728 -- -------------------------------------------------------- 729 730 -- 731 -- Estructura de tabla para la tabla `authperso_custom` 732 -- 733 734 DROP TABLE IF EXISTS 'authperso_custom'; 735 /*!40101 SET @saved_cs_client = @@character_set_client */; 736 /*!40101 SET character_set_client = utf8 */; 737 CREATE TABLE IF NOT EXISTS `authperso_custom` ( 765 -- 766 -- Dumping data for table `authperso_authorities` 767 -- 768 769 LOCK TABLES `authperso_authorities` WRITE; 770 /*!40000 ALTER TABLE `authperso_authorities` DISABLE KEYS */; 771 /*!40000 ALTER TABLE `authperso_authorities` ENABLE KEYS */; 772 UNLOCK TABLES; 773 774 -- 775 -- Table structure for table `authperso_custom` 776 -- 777 778 DROP TABLE IF EXISTS `authperso_custom`; 779 /*!40101 SET @saved_cs_client = @@character_set_client */; 780 /*!40101 SET character_set_client = utf8 */; 781 CREATE TABLE `authperso_custom` ( 738 782 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 739 783 `custom_prefixe` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 757 801 758 802 -- 759 -- Estructura de tabla para la tabla `avis` 803 -- Dumping data for table `authperso_custom` 804 -- 805 806 LOCK TABLES `authperso_custom` WRITE; 807 /*!40000 ALTER TABLE `authperso_custom` DISABLE KEYS */; 808 /*!40000 ALTER TABLE `authperso_custom` ENABLE KEYS */; 809 UNLOCK TABLES; 810 811 -- 812 -- Table structure for table `authperso_custom_lists` 813 -- 814 815 DROP TABLE IF EXISTS `authperso_custom_lists`; 816 /*!40101 SET @saved_cs_client = @@character_set_client */; 817 /*!40101 SET character_set_client = utf8 */; 818 CREATE TABLE `authperso_custom_lists` ( 819 `authperso_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 820 `authperso_custom_list_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 821 `authperso_custom_list_lib` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 822 `ordre` int(11) DEFAULT NULL, 823 KEY `editorial_custom_champ` (`authperso_custom_champ`), 824 KEY `editorial_champ_list_value` (`authperso_custom_champ`,`authperso_custom_list_value`) 825 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 826 /*!40101 SET character_set_client = @saved_cs_client */; 827 828 -- 829 -- Dumping data for table `authperso_custom_lists` 830 -- 831 832 LOCK TABLES `authperso_custom_lists` WRITE; 833 /*!40000 ALTER TABLE `authperso_custom_lists` DISABLE KEYS */; 834 /*!40000 ALTER TABLE `authperso_custom_lists` ENABLE KEYS */; 835 UNLOCK TABLES; 836 837 -- 838 -- Table structure for table `authperso_custom_values` 839 -- 840 841 DROP TABLE IF EXISTS `authperso_custom_values`; 842 /*!40101 SET @saved_cs_client = @@character_set_client */; 843 /*!40101 SET character_set_client = utf8 */; 844 CREATE TABLE `authperso_custom_values` ( 845 `authperso_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 846 `authperso_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', 847 `authperso_custom_small_text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 848 `authperso_custom_text` text COLLATE utf8_unicode_ci, 849 `authperso_custom_integer` int(11) DEFAULT NULL, 850 `authperso_custom_date` date DEFAULT NULL, 851 `authperso_custom_float` float DEFAULT NULL, 852 KEY `editorial_custom_champ` (`authperso_custom_champ`), 853 KEY `editorial_custom_origine` (`authperso_custom_origine`), 854 KEY `i_acv_st` (`authperso_custom_small_text`), 855 KEY `i_acv_t` (`authperso_custom_text`(255)), 856 KEY `i_acv_i` (`authperso_custom_integer`), 857 KEY `i_acv_d` (`authperso_custom_date`), 858 KEY `i_acv_f` (`authperso_custom_float`) 859 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 860 /*!40101 SET character_set_client = @saved_cs_client */; 861 862 -- 863 -- Dumping data for table `authperso_custom_values` 864 -- 865 866 LOCK TABLES `authperso_custom_values` WRITE; 867 /*!40000 ALTER TABLE `authperso_custom_values` DISABLE KEYS */; 868 /*!40000 ALTER TABLE `authperso_custom_values` ENABLE KEYS */; 869 UNLOCK TABLES; 870 871 -- 872 -- Table structure for table `avis` 760 873 -- 761 874 762 875 DROP TABLE IF EXISTS `avis`; 763 CREATE TABLE IF NOT EXISTS `avis` ( 876 /*!40101 SET @saved_cs_client = @@character_set_client */; 877 /*!40101 SET character_set_client = utf8 */; 878 CREATE TABLE `avis` ( 764 879 `id_avis` mediumint(8) NOT NULL AUTO_INCREMENT, 765 880 `num_empr` mediumint(8) NOT NULL DEFAULT '0', … … 775 890 KEY `avis_num_empr` (`num_empr`), 776 891 KEY `avis_note` (`note`) 777 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 778 779 -- 780 -- Volcar la base de datos para la tabla `avis` 781 -- 782 783 784 -- -------------------------------------------------------- 785 786 -- 787 -- Estructura de tabla para la tabla `bannette_abon` 892 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 893 /*!40101 SET character_set_client = @saved_cs_client */; 894 895 -- 896 -- Dumping data for table `avis` 897 -- 898 899 LOCK TABLES `avis` WRITE; 900 /*!40000 ALTER TABLE `avis` DISABLE KEYS */; 901 /*!40000 ALTER TABLE `avis` ENABLE KEYS */; 902 UNLOCK TABLES; 903 904 -- 905 -- Table structure for table `bannette_abon` 788 906 -- 789 907 790 908 DROP TABLE IF EXISTS `bannette_abon`; 791 CREATE TABLE IF NOT EXISTS `bannette_abon` ( 792 `num_bannette` int(9) unsigned NOT NULL DEFAULT '0', 909 /*!40101 SET @saved_cs_client = @@character_set_client */; 910 /*!40101 SET character_set_client = utf8 */; 911 CREATE TABLE `bannette_abon` ( 912 `num_bannette` int(9) unsigned NOT NULL DEFAULT '0', 793 913 `num_empr` int(9) unsigned NOT NULL DEFAULT '0', 794 914 `actif` int(1) unsigned NOT NULL DEFAULT '0', … … 797 917 KEY `i_num_empr` (`num_empr`) 798 918 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 799 800 -- 801 -- Volcar la base de datos para la tabla `bannette_abon` 802 -- 803 804 805 -- -------------------------------------------------------- 806 807 -- 808 -- Estructura de tabla para la tabla `bannette_contenu` 919 /*!40101 SET character_set_client = @saved_cs_client */; 920 921 -- 922 -- Dumping data for table `bannette_abon` 923 -- 924 925 LOCK TABLES `bannette_abon` WRITE; 926 /*!40000 ALTER TABLE `bannette_abon` DISABLE KEYS */; 927 /*!40000 ALTER TABLE `bannette_abon` ENABLE KEYS */; 928 UNLOCK TABLES; 929 930 -- 931 -- Table structure for table `bannette_contenu` 809 932 -- 810 933 811 934 DROP TABLE IF EXISTS `bannette_contenu`; 812 CREATE TABLE IF NOT EXISTS `bannette_contenu` ( 813 `num_bannette` int(9) unsigned NOT NULL DEFAULT '0', 935 /*!40101 SET @saved_cs_client = @@character_set_client */; 936 /*!40101 SET character_set_client = utf8 */; 937 CREATE TABLE `bannette_contenu` ( 938 `num_bannette` int(9) unsigned NOT NULL DEFAULT '0', 814 939 `num_notice` int(9) unsigned NOT NULL DEFAULT '0', 815 940 `date_ajout` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, … … 818 943 KEY `i_num_notice` (`num_notice`) 819 944 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 820 821 -- 822 -- Volcar la base de datos para la tabla `bannette_contenu` 823 -- 824 825 826 -- -------------------------------------------------------- 827 828 -- 829 -- Estructura de tabla para la tabla `bannette_equation` 945 /*!40101 SET character_set_client = @saved_cs_client */; 946 947 -- 948 -- Dumping data for table `bannette_contenu` 949 -- 950 951 LOCK TABLES `bannette_contenu` WRITE; 952 /*!40000 ALTER TABLE `bannette_contenu` DISABLE KEYS */; 953 /*!40000 ALTER TABLE `bannette_contenu` ENABLE KEYS */; 954 UNLOCK TABLES; 955 956 -- 957 -- Table structure for table `bannette_equation` 830 958 -- 831 959 832 960 DROP TABLE IF EXISTS `bannette_equation`; 833 CREATE TABLE IF NOT EXISTS `bannette_equation` ( 834 `num_bannette` int(9) unsigned NOT NULL DEFAULT '0', 961 /*!40101 SET @saved_cs_client = @@character_set_client */; 962 /*!40101 SET character_set_client = utf8 */; 963 CREATE TABLE `bannette_equation` ( 964 `num_bannette` int(9) unsigned NOT NULL DEFAULT '0', 835 965 `num_equation` int(9) unsigned NOT NULL DEFAULT '0', 836 966 PRIMARY KEY (`num_bannette`,`num_equation`) 837 967 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 838 839 -- 840 -- Volcar la base de datos para la tabla `bannette_equation` 841 -- 842 843 -- -------------------------------------------------------- 844 845 -- 846 -- Estructura de tabla para la tabla `bannette_exports` 968 /*!40101 SET character_set_client = @saved_cs_client */; 969 970 -- 971 -- Dumping data for table `bannette_equation` 972 -- 973 974 LOCK TABLES `bannette_equation` WRITE; 975 /*!40000 ALTER TABLE `bannette_equation` DISABLE KEYS */; 976 /*!40000 ALTER TABLE `bannette_equation` ENABLE KEYS */; 977 UNLOCK TABLES; 978 979 -- 980 -- Table structure for table `bannette_exports` 847 981 -- 848 982 849 983 DROP TABLE IF EXISTS `bannette_exports`; 850 CREATE TABLE IF NOT EXISTS `bannette_exports` ( 851 `num_bannette` int(11) unsigned NOT NULL DEFAULT '0', 984 /*!40101 SET @saved_cs_client = @@character_set_client */; 985 /*!40101 SET character_set_client = utf8 */; 986 CREATE TABLE `bannette_exports` ( 987 `num_bannette` int(11) unsigned NOT NULL DEFAULT '0', 852 988 `export_format` int(3) NOT NULL DEFAULT '0', 853 989 `export_data` longblob NOT NULL, … … 855 991 PRIMARY KEY (`num_bannette`,`export_format`) 856 992 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 857 858 -- 859 -- Volcar la base de datos para la tabla `bannette_exports` 860 -- 861 862 863 -- -------------------------------------------------------- 864 865 -- 866 -- Estructura de tabla para la tabla`bannette_facettes` 993 /*!40101 SET character_set_client = @saved_cs_client */; 994 995 -- 996 -- Dumping data for table `bannette_exports` 997 -- 998 999 LOCK TABLES `bannette_exports` WRITE; 1000 /*!40000 ALTER TABLE `bannette_exports` DISABLE KEYS */; 1001 /*!40000 ALTER TABLE `bannette_exports` ENABLE KEYS */; 1002 UNLOCK TABLES; 1003 1004 -- 1005 -- Table structure for table `bannette_facettes` 867 1006 -- 868 1007 869 1008 DROP TABLE IF EXISTS `bannette_facettes`; 870 1009 /*!40101 SET @saved_cs_client = @@character_set_client */; 1010 /*!40101 SET character_set_client = utf8 */; 871 1011 CREATE TABLE `bannette_facettes` ( 872 1012 `num_ban_facette` int(10) unsigned NOT NULL DEFAULT '0', … … 875 1015 `ban_facette_order` int(1) NOT NULL DEFAULT '0', 876 1016 KEY `bannette_facettes_key` (`num_ban_facette`,`ban_facette_critere`,`ban_facette_ss_critere`) 877 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 878 879 880 -- 881 -- Volcar la base de datos para la tabla `bannette_facettes` 882 -- 883 884 -- -------------------------------------------------------- 885 886 -- 887 -- Estructura de tabla para la tabla `bannettes` 1017 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1018 /*!40101 SET character_set_client = @saved_cs_client */; 1019 1020 -- 1021 -- Dumping data for table `bannette_facettes` 1022 -- 1023 1024 LOCK TABLES `bannette_facettes` WRITE; 1025 /*!40000 ALTER TABLE `bannette_facettes` DISABLE KEYS */; 1026 /*!40000 ALTER TABLE `bannette_facettes` ENABLE KEYS */; 1027 UNLOCK TABLES; 1028 1029 -- 1030 -- Table structure for table `bannette_tpl` 1031 -- 1032 1033 DROP TABLE IF EXISTS `bannette_tpl`; 1034 /*!40101 SET @saved_cs_client = @@character_set_client */; 1035 /*!40101 SET character_set_client = utf8 */; 1036 CREATE TABLE `bannette_tpl` ( 1037 `bannettetpl_id` int(10) unsigned NOT NULL AUTO_INCREMENT, 1038 `bannettetpl_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1039 `bannettetpl_comment` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1040 `bannettetpl_tpl` text COLLATE utf8_unicode_ci NOT NULL, 1041 PRIMARY KEY (`bannettetpl_id`) 1042 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1043 /*!40101 SET character_set_client = @saved_cs_client */; 1044 1045 -- 1046 -- Dumping data for table `bannette_tpl` 1047 -- 1048 1049 LOCK TABLES `bannette_tpl` WRITE; 1050 /*!40000 ALTER TABLE `bannette_tpl` DISABLE KEYS */; 1051 INSERT INTO `bannette_tpl` VALUES (1,'Template PMB','','{{info.header}}\r\n<br /><br />\r\n<div class=\"summary\">\r\n{% for sommaire in sommaires %}\r\n<a href=\"#[{{sommaire.level}}]\">\r\n{{sommaire.level}} - {{sommaire.title}}\r\n</a>\r\n<br />\r\n{% endfor %}\r\n</div>\r\n<hr>\r\n{% for sommaire in sommaires %}\r\n<a name=\"[{{sommaire.level}}]\" />\r\n<h1>{{sommaire.level}} - {{sommaire.title}}</h1>\r\n{% for record in sommaire.records %}\r\n{{record.render}}\r\n<hr>\r\n{% endfor %}\r\n<br />\r\n{% endfor %}\r\n{{info.footer}}'); 1052 /*!40000 ALTER TABLE `bannette_tpl` ENABLE KEYS */; 1053 UNLOCK TABLES; 1054 1055 -- 1056 -- Table structure for table `bannettes` 888 1057 -- 889 1058 890 1059 DROP TABLE IF EXISTS `bannettes`; 891 CREATE TABLE IF NOT EXISTS `bannettes` ( 892 `id_bannette` int(9) unsigned NOT NULL AUTO_INCREMENT, 1060 /*!40101 SET @saved_cs_client = @@character_set_client */; 1061 /*!40101 SET character_set_client = utf8 */; 1062 CREATE TABLE `bannettes` ( 1063 `id_bannette` int(9) unsigned NOT NULL AUTO_INCREMENT, 893 1064 `num_classement` int(8) unsigned NOT NULL DEFAULT '1', 894 1065 `nom_bannette` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 915 1086 `group_type` int(10) unsigned NOT NULL DEFAULT '0', 916 1087 `group_pperso` int(10) unsigned NOT NULL DEFAULT '0', 1088 `display_notice_in_every_group` int(10) unsigned NOT NULL DEFAULT '0', 917 1089 `statut_not_account` int(1) unsigned NOT NULL DEFAULT '0', 918 1090 `archive_number` int(10) unsigned NOT NULL DEFAULT '0', … … 924 1096 `groupe_lecteurs` int(8) unsigned NOT NULL DEFAULT '0', 925 1097 `bannette_opac_accueil` int(10) unsigned NOT NULL DEFAULT '0', 1098 `bannette_tpl_num` int(6) unsigned NOT NULL DEFAULT '0', 926 1099 PRIMARY KEY (`id_bannette`) 927 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 928 929 -- 930 -- Volcar la base de datos para la tabla `bannettes` 931 -- 932 933 934 -- -------------------------------------------------------- 935 936 -- 937 -- Estructura de tabla para la tabla`bannettes_descriptors` 1100 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1101 /*!40101 SET character_set_client = @saved_cs_client */; 1102 1103 -- 1104 -- Dumping data for table `bannettes` 1105 -- 1106 1107 LOCK TABLES `bannettes` WRITE; 1108 /*!40000 ALTER TABLE `bannettes` DISABLE KEYS */; 1109 /*!40000 ALTER TABLE `bannettes` ENABLE KEYS */; 1110 UNLOCK TABLES; 1111 1112 -- 1113 -- Table structure for table `bannettes_descriptors` 938 1114 -- 939 1115 940 1116 DROP TABLE IF EXISTS `bannettes_descriptors`; 941 1117 /*!40101 SET @saved_cs_client = @@character_set_client */; 1118 /*!40101 SET character_set_client = utf8 */; 942 1119 CREATE TABLE `bannettes_descriptors` ( 943 1120 `num_bannette` int(11) NOT NULL DEFAULT '0', … … 945 1122 `bannette_descriptor_order` int(11) NOT NULL DEFAULT '0', 946 1123 PRIMARY KEY (`num_bannette`,`num_noeud`) 947 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 948 949 950 -- 951 -- Volcar la base de datos para la tabla `bannettes_descriptors` 952 -- 953 954 -- -------------------------------------------------------- 955 956 957 -- 958 -- Estructura de tabla para la tabla `budgets` 1124 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1125 /*!40101 SET character_set_client = @saved_cs_client */; 1126 1127 -- 1128 -- Dumping data for table `bannettes_descriptors` 1129 -- 1130 1131 LOCK TABLES `bannettes_descriptors` WRITE; 1132 /*!40000 ALTER TABLE `bannettes_descriptors` DISABLE KEYS */; 1133 /*!40000 ALTER TABLE `bannettes_descriptors` ENABLE KEYS */; 1134 UNLOCK TABLES; 1135 1136 -- 1137 -- Table structure for table `budgets` 959 1138 -- 960 1139 961 1140 DROP TABLE IF EXISTS `budgets`; 962 CREATE TABLE IF NOT EXISTS `budgets` ( 963 `id_budget` int(8) unsigned NOT NULL AUTO_INCREMENT, 1141 /*!40101 SET @saved_cs_client = @@character_set_client */; 1142 /*!40101 SET character_set_client = utf8 */; 1143 CREATE TABLE `budgets` ( 1144 `id_budget` int(8) unsigned NOT NULL AUTO_INCREMENT, 964 1145 `num_entite` int(5) unsigned NOT NULL DEFAULT '0', 965 1146 `num_exercice` int(8) unsigned NOT NULL DEFAULT '0', … … 971 1152 `type_budget` int(3) unsigned NOT NULL DEFAULT '0', 972 1153 PRIMARY KEY (`id_budget`) 973 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 974 975 -- 976 -- Volcar la base de datos para la tabla `budgets` 977 -- 978 979 980 -- -------------------------------------------------------- 981 982 -- 983 -- Estructura de tabla para la tabla `bulletins` 1154 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1155 /*!40101 SET character_set_client = @saved_cs_client */; 1156 1157 -- 1158 -- Dumping data for table `budgets` 1159 -- 1160 1161 LOCK TABLES `budgets` WRITE; 1162 /*!40000 ALTER TABLE `budgets` DISABLE KEYS */; 1163 /*!40000 ALTER TABLE `budgets` ENABLE KEYS */; 1164 UNLOCK TABLES; 1165 1166 -- 1167 -- Table structure for table `bulletins` 984 1168 -- 985 1169 986 1170 DROP TABLE IF EXISTS `bulletins`; 987 CREATE TABLE IF NOT EXISTS `bulletins` ( 1171 /*!40101 SET @saved_cs_client = @@character_set_client */; 1172 /*!40101 SET character_set_client = utf8 */; 1173 CREATE TABLE `bulletins` ( 988 1174 `bulletin_id` int(8) unsigned NOT NULL AUTO_INCREMENT, 989 1175 `bulletin_numero` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1000 1186 KEY `date_date` (`date_date`), 1001 1187 KEY `i_num_notice` (`num_notice`) 1002 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1003 1004 -- 1005 -- Volcar la base de datos para la tabla `bulletins` 1006 -- 1007 1008 1009 -- -------------------------------------------------------- 1010 1011 -- 1012 -- Estructura de tabla para la tabla `cache_amendes` 1188 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1189 /*!40101 SET character_set_client = @saved_cs_client */; 1190 1191 -- 1192 -- Dumping data for table `bulletins` 1193 -- 1194 1195 LOCK TABLES `bulletins` WRITE; 1196 /*!40000 ALTER TABLE `bulletins` DISABLE KEYS */; 1197 /*!40000 ALTER TABLE `bulletins` ENABLE KEYS */; 1198 UNLOCK TABLES; 1199 1200 -- 1201 -- Table structure for table `cache_amendes` 1013 1202 -- 1014 1203 1015 1204 DROP TABLE IF EXISTS `cache_amendes`; 1016 CREATE TABLE IF NOT EXISTS `cache_amendes` ( 1205 /*!40101 SET @saved_cs_client = @@character_set_client */; 1206 /*!40101 SET character_set_client = utf8 */; 1207 CREATE TABLE `cache_amendes` ( 1017 1208 `id_empr` int(10) unsigned NOT NULL DEFAULT '0', 1018 1209 `cache_date` date NOT NULL DEFAULT '0000-00-00', … … 1020 1211 KEY `id_empr` (`id_empr`) 1021 1212 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1022 1023 -- 1024 -- Volcar la base de datos para la tabla `cache_amendes` 1025 -- 1026 1027 1028 -- -------------------------------------------------------- 1029 1030 -- 1031 -- Estructura de tabla para la tabla `caddie` 1213 /*!40101 SET character_set_client = @saved_cs_client */; 1214 1215 -- 1216 -- Dumping data for table `cache_amendes` 1217 -- 1218 1219 LOCK TABLES `cache_amendes` WRITE; 1220 /*!40000 ALTER TABLE `cache_amendes` DISABLE KEYS */; 1221 /*!40000 ALTER TABLE `cache_amendes` ENABLE KEYS */; 1222 UNLOCK TABLES; 1223 1224 -- 1225 -- Table structure for table `caddie` 1032 1226 -- 1033 1227 1034 1228 DROP TABLE IF EXISTS `caddie`; 1035 CREATE TABLE IF NOT EXISTS `caddie` ( 1229 /*!40101 SET @saved_cs_client = @@character_set_client */; 1230 /*!40101 SET character_set_client = utf8 */; 1231 CREATE TABLE `caddie` ( 1036 1232 `idcaddie` int(8) unsigned NOT NULL AUTO_INCREMENT, 1037 1233 `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, … … 1039 1235 `comment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 1040 1236 `autorisations` mediumtext COLLATE utf8_unicode_ci, 1237 `caddie_classement` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1238 `acces_rapide` int(11) NOT NULL DEFAULT '0', 1041 1239 PRIMARY KEY (`idcaddie`), 1042 1240 KEY `caddie_type` (`type`) 1043 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=9 ; 1044 1045 -- 1046 -- Volcar la base de datos para la tabla `caddie` 1047 -- 1048 1049 INSERT INTO `caddie` (`idcaddie`, `name`, `type`, `comment`, `autorisations`) VALUES 1050 (1, 'Registros para exposición', 'NOTI', 'Incluir en esta cesta los registros de la exposición virtual', '1 2'), 1051 (2, 'Registros a devolver a BDP', 'NOTI', 'Llenar esta cesta como control de los registros que se han de devolver', '1 2'), 1052 (3, 'Ejemplares a devolver a BDP', 'EXPL', 'Llenar esta cesta con los ejemplares de los documentos a devolver a la BDP', '1 2'), 1053 (4, 'Registros con el título duplicado', 'NOTI', 'Duplicados del primer título', '1 2'), 1054 (8, 'Ejemplo de cesta de ejemplares', 'EXPL', '', '1 4 3 2'), 1055 (5, 'Loire - Registros para el tema del mes', 'NOTI', '', '1 4'), 1056 (6, 'Loire - Números que contienen los artículos para la exposición del mes', 'BULL', '', '1 4'), 1057 (7, 'Cochon - registros para la exposición del mes próximo', 'NOTI', '', '1'); 1058 1059 -- -------------------------------------------------------- 1060 1061 -- 1062 -- Estructura de tabla para la tabla `caddie_content` 1241 ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1242 /*!40101 SET character_set_client = @saved_cs_client */; 1243 1244 -- 1245 -- Dumping data for table `caddie` 1246 -- 1247 1248 LOCK TABLES `caddie` WRITE; 1249 /*!40000 ALTER TABLE `caddie` DISABLE KEYS */; 1250 INSERT INTO `caddie` VALUES (1,'Registros para exposición','NOTI','Incluir en esta cesta los registros de la exposición virtual','1 2','',0),(2,'Registros a devolver a BDP','NOTI','Llenar esta cesta como control de los registros que se han de devolver','1 2','',0),(3,'Ejemplares a devolver a BDP','EXPL','Llenar esta cesta con los ejemplares de los documentos a devolver a la BDP','1 2','',0),(4,'Registros con el tÃÂtulo duplicado','NOTI','Duplicados del primer tÃÂtulo','1 2','',0),(8,'Ejemplo de cesta de ejemplares','EXPL','','1 4 3 2','',0),(5,'Loire - Registros para el tema del mes','NOTI','','1 4','',0),(6,'Loire - Números que contienen los artÃÂculos para la exposición del mes','BULL','','1 4','',0),(7,'Cochon - registros para la exposición del mes próximo','NOTI','','1','',0); 1251 /*!40000 ALTER TABLE `caddie` ENABLE KEYS */; 1252 UNLOCK TABLES; 1253 1254 -- 1255 -- Table structure for table `caddie_content` 1063 1256 -- 1064 1257 1065 1258 DROP TABLE IF EXISTS `caddie_content`; 1066 CREATE TABLE IF NOT EXISTS `caddie_content` ( 1259 /*!40101 SET @saved_cs_client = @@character_set_client */; 1260 /*!40101 SET character_set_client = utf8 */; 1261 CREATE TABLE `caddie_content` ( 1067 1262 `caddie_id` int(8) unsigned NOT NULL DEFAULT '0', 1068 1263 `object_id` int(10) unsigned NOT NULL DEFAULT '0', … … 1073 1268 KEY `object_id` (`object_id`) 1074 1269 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1075 1076 -- 1077 -- Volcar la base de datos para la tabla `caddie_content` 1078 -- 1079 1080 1081 -- -------------------------------------------------------- 1082 1083 -- 1084 -- Estructura de tabla para la tabla `caddie_procs` 1270 /*!40101 SET character_set_client = @saved_cs_client */; 1271 1272 -- 1273 -- Dumping data for table `caddie_content` 1274 -- 1275 1276 LOCK TABLES `caddie_content` WRITE; 1277 /*!40000 ALTER TABLE `caddie_content` DISABLE KEYS */; 1278 /*!40000 ALTER TABLE `caddie_content` ENABLE KEYS */; 1279 UNLOCK TABLES; 1280 1281 -- 1282 -- Table structure for table `caddie_procs` 1085 1283 -- 1086 1284 1087 1285 DROP TABLE IF EXISTS `caddie_procs`; 1088 CREATE TABLE IF NOT EXISTS `caddie_procs` ( 1286 /*!40101 SET @saved_cs_client = @@character_set_client */; 1287 /*!40101 SET character_set_client = utf8 */; 1288 CREATE TABLE `caddie_procs` ( 1089 1289 `idproc` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 1090 1290 `type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'SELECT', … … 1095 1295 `parameters` text COLLATE utf8_unicode_ci, 1096 1296 PRIMARY KEY (`idproc`) 1097 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=40 ; 1098 1099 -- 1100 -- Volcar la base de datos para la tabla `caddie_procs` 1101 -- 1102 1103 INSERT INTO `caddie_procs` (`idproc`, `type`, `name`, `requete`, `comment`, `autorisations`, `parameters`) VALUES 1104 (1, 'SELECT', 'Registros por autor', 0x53454c454354206e6f746963655f6964206173206f626a6563745f69642c20274e4f544927206173206f626a6563745f747970652046524f4d206e6f74696365732c20617574686f72732c20726573706f6e736162696c69747920574845524520617574686f725f6e616d65206c696b652027252121637269746572652121252720414e4420617574686f725f69643d726573706f6e736162696c6974795f617574686f7220414e44206e6f746963655f69643d726573706f6e736162696c6974795f6e6f746963650d0a, 'Selección de registros dónde el nombre del autor contiene ciertas letras', '1 2 3', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="critere" MANDATORY="yes">\n <ALIAS><![CDATA[Caracteres incluidos en el apellido]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>25</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1105 (2, 'SELECT', 'Registros duplicados', 0x6372656174652054454d504f52415259205441424c4520746d702053454c45435420746974312046524f4d206e6f74696365732047524f5550204259207469743120484156494e4720636f756e74282a293e310d0a53454c454354206e6f746963655f6964206173206f626a6563745f69642c20274e4f544927206173206f626a6563745f747970652046524f4d206e6f74696365732c20746d70207748455245206e6f74696365732e746974313d746d702e74697431, 'Selección de los registros duplicados por el título principal', '1 2 3', NULL), 1106 (3, 'SELECT', 'EXPL por sección / propietario', 0x73656c656374206578706c5f6964206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652066726f6d206578656d706c6169726573207768657265206578706c5f73656374696f6e20696e2028212173656374696f6e21212920616e64206578706c5f6f776e65723d212170726f7072696f2121, 'Selección de ejemplares por sección y por propietario', '1 2', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="section" MANDATORY="yes">\n <ALIAS><![CDATA[Sección]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idsection, section_libelle from docs_section order by section_libelle]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME="proprio" MANDATORY="yes">\n <ALIAS><![CDATA[Proprietario]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY>select idlender, lender_libelle from lenders order by lender_libelle</QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1107 (4, 'SELECT', 'EXPL que la signatura comienza por', 0x73656c656374206578706c5f6964206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652066726f6d206578656d706c6169726573207768657265206578706c5f636f7465206c696b6520272121636f6d6d655f636f746521212527, 'Selección de ejemplares a partir del inicio de su signatura', '1 2', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="comme_cote" MANDATORY="no">\n <ALIAS><![CDATA[Inicio de la signatura]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>20</SIZE>\r\n <MAXSIZE>20</MAXSIZE>\r\n</OPTIONS> \n </FIELD>\n</FIELDS>'), 1108 (6, 'SELECT', 'Nunca prestados', 0x53454c454354206578706c5f6964206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652c20636f6e63617428224c4956524520222c74697431292061732054697472652046524f4d206e6f7469636573206a6f696e206578656d706c6169726573206f6e206578706c5f6e6f746963653d6e6f746963655f6964204c454654204a4f494e20707265745f61726368697665204f4e206172635f6578706c5f6e6f74696365203d206e6f746963655f6964207768657265206172635f6578706c5f6964204953204e554c4c20414e44206578706c5f6964204953204e4f54204e554c4c20554e494f4e2053454c454354206578706c5f6964206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652c20636f6e6361742822504552494f20222c746974312c2022204e756de9726f203a20222c62756c6c6574696e5f6e756d65726f292061732054697472652046524f4d202862756c6c6574696e7320494e4e4552204a4f494e206e6f7469636573204f4e2062756c6c6574696e732e62756c6c6574696e5f6e6f74696365203d206e6f74696365732e6e6f746963655f69642920494e4e4552204a4f494e206578656d706c6169726573206f6e206578706c5f62756c6c6574696e3d62756c6c6574696e5f6964204c454654204a4f494e20707265745f61726368697665204f4e206578706c5f6964203d206172635f6578706c5f696420574845524520707265745f617263686976652e6172635f6964204973204e756c6c, 'Añade a una cesta los ejemplares que nunca se han prestado', '1 2', NULL), 1109 (7, 'SELECT', 'Selección de ejemplares por estado', 0x73656c656374206578706c5f6964206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652066726f6d206578656d706c6169726573207768657265206578706c5f73746174757420696e20282121737461747574212129, '', '1 2', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="statut" MANDATORY="yes">\n <ALIAS><![CDATA[estado]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from docs_statut]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1110 (8, 'SELECT', 'Selección de ejemplares por localización, sección, estado, propietario', 0x73656c656374206578706c5f6964206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652066726f6d206578656d706c6169726573207768657265206578706c5f73656374696f6e20696e2028212173656374696f6e21212920616e64206578706c5f6c6f636174696f6e20696e202821216c6f636174696f6e21212920616e64206578706c5f73746174757420696e2028212173746174757421212920616e64206578706c5f6f776e65723d212170726f7072696f21212020, '', '1 2', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="section" MANDATORY="yes">\n <ALIAS><![CDATA[Sección]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idsection, section_libelle from docs_section order by 2]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME="location" MANDATORY="yes">\n <ALIAS><![CDATA[Localización]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idlocation, location_libelle from docs_location order by 2]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME="statut" MANDATORY="yes">\n <ALIAS><![CDATA[Estado]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from docs_statut order by 2]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME="proprio" MANDATORY="yes">\n <ALIAS><![CDATA[Proprietario]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idlender, lender_libelle from lenders order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1111 (10, 'ACTION', 'Déplacement des bulletins d''un panier vers un autre périodique', 0x7570646174652062756c6c6574696e73207365742062756c6c6574696e5f6e6f746963653d21216e65775f706572696f21212077686572652062756c6c6574696e5f696420696e20284341444449452842554c4c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_perio" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau périodique]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select notice_id, tit1 from notices where niveau_biblio=''s'' and niveau_hierar=''1'' order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1112 (11, 'SELECT', 'Sélection / pointage des bulletins sans articles', 0x73656c6563742064697374696e63742062756c6c6574696e5f6964206173206f626a6563745f69642c2742554c4c27206173206f626a6563745f747970652066726f6d2062756c6c6574696e73206c656674206a6f696e20616e616c79736973206f6e20616e616c797369735f62756c6c6574696e3d62756c6c6574696e5f696420776865726520616e616c797369735f62756c6c6574696e206973206e756c6c, '', ' 1 ', ''), 1113 (13, 'SELECT', 'Sélection / pointage de bulletins par date', 0x73656c6563742062756c6c6574696e5f6964206173206f626a6563745f69642c202742554c4c27206173206f626a6563745f747970652066726f6d2062756c6c6574696e7320776865726520646174655f646174653e272121646174656421212720414e4420646174655f646174653c2721216461746566212127, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="dated" MANDATORY="yes">\n <ALIAS><![CDATA[date de début :]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR="date_box"></OPTIONS>\n </FIELD>\n <FIELD NAME="datef" MANDATORY="yes">\n <ALIAS><![CDATA[date de fin :]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR="date_box"></OPTIONS>\n </FIELD>\n</FIELDS>'), 1114 (14, 'ACTION', 'Changement de code statistique des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f636f6465737461743d2721216e65775f636f646573746174212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_codestat" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau code statistique]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idcode, codestat_libelle from docs_codestat order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1115 (16, 'ACTION', 'Changement de date de dépôt des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f646174655f6465706f743d2721216e65775f646174655f6465706f74212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_date_depot" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle date de dépôt]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR="date_box"></OPTIONS> \n </FIELD>\n</FIELDS>'), 1116 (18, 'ACTION', 'Changement de date de retour des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f646174655f7265746f75723d2721216e65775f646174655f7265746f7572212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_date_retour" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle date de retour]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR="date_box"></OPTIONS> \n </FIELD>\n</FIELDS>'), 1117 (19, 'ACTION', 'Changement de localisation des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f6c6f636174696f6e3d2721216e65775f6c6f636174696f6e212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_location" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle localisation]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idlocation, location_libelle from docs_location order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1118 (20, 'ACTION', 'Changement de message des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f6e6f74653d2721216e65775f6e6f7465212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_note" MANDATORY="no">\n <ALIAS><![CDATA[Nouveau message]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1119 (21, 'ACTION', 'Changement d''une partie de la cote des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f636f74653d7265706c616365286578706c5f636f74652c202721216d6f7469665f312121272c202721216d6f7469665f3221212729207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="motif_1" MANDATORY="no">\n <ALIAS><![CDATA[Remplacer]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS> \n </FIELD>\n <FIELD NAME="motif_2" MANDATORY="no">\n <ALIAS><![CDATA[Par]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS> \n </FIELD>\n</FIELDS>'), 1120 (22, 'ACTION', 'Changement de prix des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f707269783d2721216e65775f70726978212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_prix" MANDATORY="no">\n <ALIAS><![CDATA[Nouveau prix]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1121 (23, 'ACTION', 'Changement de section des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f73656374696f6e3d2721216e65775f73656374696f6e212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_section" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle section]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idsection, section_libelle from docs_section order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1122 (24, 'ACTION', 'Changement de statut des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f7374617475743d2721216e65775f737461747574212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_statut" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from docs_statut order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1123 (25, 'ACTION', 'Changement de support des exemplaires d''un panier', 0x757064617465206578656d706c616972657320736574206578706c5f747970646f633d2721216e65775f747970646f63212127207768657265206578706c5f696420696e2028434144444945284558504c2929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_typdoc" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau support]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idtyp_doc, tdoc_libelle from docs_type order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1124 (26, 'SELECT', 'Sélection / Pointage des exemplaires en cours de prêt', 0x53454c45435420707265745f69646578706c206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652066726f6d2070726574, '', ' 1 ', ''), 1125 (27, 'SELECT', 'Sélection d''exemplaires à partir d''un fichier de code-barres', 0x73656c656374206578706c5f6964206173206f626a6563745f69642c20274558504c27206173206f626a6563745f747970652066726f6d206578656d706c6169726573207768657265206578706c5f636220696e2028212166696368696572212129, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="fichier" MANDATORY="yes">\n <ALIAS><![CDATA[fichier]]></ALIAS>\n <TYPE>file_box</TYPE>\n<OPTIONS FOR="file_box">\r\n <METHOD>1</METHOD>\r\n <TEMP_TABLE_NAME></TEMP_TABLE_NAME>\r\n <DATA_TYPE>1</DATA_TYPE>\r\n</OPTIONS> \n </FIELD>\n</FIELDS>'), 1126 (30, 'ACTION', 'Changement de l''indexation décimale des notices d''un panier', 0x757064617465206e6f746963657320736574206e6f74696365732e696e646578696e743d2721216e6f7576656c6c655f696e6465786174696f6e21212720207768657265206e6f746963655f696420696e2028434144444945284e4f54492929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="nouvelle_indexation" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle indexation]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select indexint_id, concat(indexint_name,'' '', indexint_comment) from indexint order by indexint_name]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1127 (31, 'ACTION', 'Changement de statut des notices d''un panier', 0x757064617465206e6f746963657320736574207374617475743d2721216e65775f737461747574212127207768657265206e6f746963655f696420696e2028434144444945284e4f54492929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_statut" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select id_notice_statut, gestion_libelle from notice_statut order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1128 (32, 'ACTION', 'Changement de type de document des notices d''un panier', 0x757064617465206e6f74696365732073657420747970646f633d21216e65775f747970646f632121207768657265206e6f746963655f696420696e2028434144444945284e4f54492929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_typdoc" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau type de document]]></ALIAS>\n <TYPE>list</TYPE>\n<OPTIONS FOR="list">\r\n <MULTIPLE>no</MULTIPLE>\r\n <ITEMS>\r\n <ITEM VALUE="b"><![CDATA[texte manuscrit]]></ITEM>\r\n <ITEM VALUE="c"><![CDATA[partition musicale imprimée]]></ITEM>\r\n <ITEM VALUE="d"><![CDATA[partition musicale manuscrite]]></ITEM>\r\n <ITEM VALUE="e"><![CDATA[document cartographique imprimé]]></ITEM>\r\n <ITEM VALUE="f"><![CDATA[document cartographique manuscrit]]></ITEM>\r\n <ITEM VALUE="g"><![CDATA[document projeté ou vidéo]]></ITEM>\r\n <ITEM VALUE="i"><![CDATA[enregistrement sonore non musical]]></ITEM>\r\n <ITEM VALUE="j"><![CDATA[enregistrement sonore musical]]></ITEM>\r\n <ITEM VALUE="k"><![CDATA[document graphique à deux dimensions]]></ITEM>\r\n <ITEM VALUE="l"><![CDATA[document électronique]]></ITEM>\r\n <ITEM VALUE="m"><![CDATA[document multimédia]]></ITEM>\r\n <ITEM VALUE="r"><![CDATA[objet à 3 dimensions, artefacts, ...]]></ITEM>\r\n </ITEMS>\r\n <UNSELECT_ITEM VALUE="a"><![CDATA[texte imprimé]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1129 (33, 'ACTION', 'Copie des auteurs des notices mères d''un panier vers leurs notices filles', 0x494e534552542069676e6f726520494e544f20726573706f6e736162696c6974792028726573706f6e736162696c6974795f617574686f722c20726573706f6e736162696c6974795f6e6f746963652c20726573706f6e736162696c6974795f747970652c20726573706f6e736162696c6974795f666f6e6374696f6e29200d0a53454c454354200d0a72322e726573706f6e736162696c6974795f617574686f722c206e756d5f6e6f746963652c2072322e726573706f6e736162696c6974795f747970652c2072322e726573706f6e736162696c6974795f666f6e6374696f6e200d0a46524f4d206e6f74696365735f72656c6174696f6e73204a4f494e20726573706f6e736162696c697479207232204f4e206c696e6b65645f6e6f74696365203d2072322e726573706f6e736162696c6974795f6e6f74696365207768657265206c696e6b65645f6e6f7469636520494e2028434144444945284e4f54492929, 'Ne rajoute des auteurs qu''aux notices filles qui n''ont pas déjà d''auteurs définis.', ' 1 ', ''), 1130 (34, 'SELECT', 'Sélection / pointage des notices ayant des notices filles', 0x73656c6563742064697374696e6374206c696e6b65645f6e6f74696365206173206f626a6563745f69642c20274e4f544927206173206f626a6563745f747970652066726f6d206e6f74696365735f72656c6174696f6e73, '', ' 1 ', ''), 1131 (35, 'SELECT', 'Sélection / pointage des notices ayant une notice mère', 0x73656c6563742064697374696e6374206e756d5f6e6f74696365206173206f626a6563745f69642c20274e4f544927206173206f626a6563745f747970652066726f6d206e6f74696365735f72656c6174696f6e73, '', ' 1 ', ''), 1132 (36, 'SELECT', 'Sélection / pointage de notices par type de document et statut', 0x53454c4543542044495354494e4354206e6f746963655f6964206173206f626a6563745f69642c20224e4f544922206173206f626a6563745f747970652046524f4d206e6f746963657320776865726520747970646f63203d2121747970655f646f63212120616e6420737461747574203d272121737461747574212127, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="type_doc" MANDATORY="yes">\n <ALIAS><![CDATA[Type de document]]></ALIAS>\n <TYPE>list</TYPE>\n<OPTIONS FOR="list">\r\n <MULTIPLE>no</MULTIPLE>\r\n <ITEMS>\r\n <ITEM VALUE="a"><![CDATA[texte imprimé]]></ITEM>\r\n <ITEM VALUE="b"><![CDATA[texte manuscrit]]></ITEM>\r\n <ITEM VALUE="c"><![CDATA[partition musicale imprimée]]></ITEM>\r\n <ITEM VALUE="d"><![CDATA[partition musicale manuscrite]]></ITEM>\r\n <ITEM VALUE="e"><![CDATA[document cartographique imprimé]]></ITEM>\r\n <ITEM VALUE="f"><![CDATA[document cartographique manuscrit]]></ITEM>\r\n <ITEM VALUE="g"><![CDATA[document projeté ou vidéo]]></ITEM>\r\n <ITEM VALUE="i"><![CDATA[enregistrement sonore non musical]]></ITEM>\r\n <ITEM VALUE="j"><![CDATA[enregistrement sonore musical]]></ITEM>\r\n <ITEM VALUE="k"><![CDATA[document graphique à deux dimensions]]></ITEM>\r\n <ITEM VALUE="l"><![CDATA[document électronique]]></ITEM>\r\n <ITEM VALUE="m"><![CDATA[document multimédia]]></ITEM>\r\n <ITEM VALUE="r"><![CDATA[objet à 3 dimensions, artefacts, ...]]></ITEM>\r\n </ITEMS>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME="statut" MANDATORY="yes">\n <ALIAS><![CDATA[Statut notice]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY>select id_notice_statut, gestion_libelle from notice_statut order by 2</QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1133 (37, 'SELECT', 'Sélection / pointage des notices sans notice-fille ni notice-mère', 0x53454c4543542044495354494e4354206e6f746963655f6964206173206f626a6563745f69642c20224e4f544922206173206f626a6563745f747970652046524f4d20606e6f746963657360206c656674206a6f696e206e6f74696365735f72656c6174696f6e73206e7231206f6e206e72312e6e756d5f6e6f746963653d6e6f746963655f6964206c656674206a6f696e206e6f74696365735f72656c6174696f6e73206e7232206f6e206e72322e6c696e6b65645f6e6f746963653d6e6f746963655f6964207768657265206e72312e6e756d5f6e6f74696365206973206e756c6c20616e64206e72322e6c696e6b65645f6e6f74696365206973206e756c6c, '', ' 1 ', ''), 1134 (39, 'SELECT', 'Sélection des exemplaires non empruntés depuis une certaine date', 0x73656c656374206578706c5f6964206173206f626a6563745f69642c274558504c276173206f626a6563745f747970652046524f4d206578656d706c616972657320776865726520646174655f666f726d6174286c6173745f6c6f616e5f646174652c272559256d25642729203c20646174655f666f726d6174282721216461742121272c272559256d25642729, '', '1', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="dat" MANDATORY="yes">\n <ALIAS><![CDATA[Date dernier prêt <]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR="date_box"></OPTIONS>\n </FIELD>\n</FIELDS>'), 1135 (5, 'ACTION', 'Cambio de estado de los ejemplares', 0x757064617465206578656d706c616972657320736574206578706c5f7374617475743d21216e6f75766561755f7374617475742121207768657265206578706c5f696420696e2028434144444945284558504c2929, 'Permite cambiar el estado de los ejemplares de una cesta', '1 4 3 2', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="nouveau_statut" MANDATORY="yes">\n <ALIAS><![CDATA[nouveau_statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY>SELECT idstatut, statut_libelle FROM docs_statut</QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 1136 (9, 'ACTION', 'Cambiar la sección de los ejemplares', 0x757064617465206578656d706c616972657320736574206578706c5f73656374696f6e3d21216e6f7576656c6c655f73656374696f6e2121207768657265206578706c5f696420696e2028434144444945284558504c2929, '', '1 4 3 2', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="nouvelle_section" MANDATORY="yes">\n <ALIAS><![CDATA[nueva sección]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select * from docs_section order by section_libelle]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[Escoge una sección]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'); 1137 1138 -- -------------------------------------------------------- 1139 1140 -- 1141 -- Estructura de tabla para la tabla `cashdesk` 1297 ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1298 /*!40101 SET character_set_client = @saved_cs_client */; 1299 1300 -- 1301 -- Dumping data for table `caddie_procs` 1302 -- 1303 1304 LOCK TABLES `caddie_procs` WRITE; 1305 /*!40000 ALTER TABLE `caddie_procs` DISABLE KEYS */; 1306 INSERT INTO `caddie_procs` VALUES (1,'SELECT','Registros por autor','SELECT notice_id as object_id, \'NOTI\' as object_type FROM notices, authors, responsability WHERE author_name like \'%!!critere!!%\' AND author_id=responsability_author AND notice_id=responsability_notice\r\n','Selección de registros dónde el nombre del autor contiene ciertas letras','1 2 3','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"critere\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Caracteres incluidos en el apellido]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>25</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(2,'SELECT','Registros duplicados','create TEMPORARY TABLE tmp SELECT tit1 FROM notices GROUP BY tit1 HAVING count(*)>1\r\nSELECT notice_id as object_id, \'NOTI\' as object_type FROM notices, tmp wHERE notices.tit1=tmp.tit1','Selección de los registros duplicados por el tÃÂtulo principal','1 2 3',NULL),(3,'SELECT','EXPL por sección / propietario','select expl_id as object_id, \'EXPL\' as object_type from exemplaires where expl_section in (!!section!!) and expl_owner=!!proprio!!','Selección de ejemplares por sección y por propietario','1 2','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"section\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Sección]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idsection, section_libelle from docs_section order by section_libelle]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME=\"proprio\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Proprietario]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY>select idlender, lender_libelle from lenders order by lender_libelle</QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(4,'SELECT','EXPL que la signatura comienza por','select expl_id as object_id, \'EXPL\' as object_type from exemplaires where expl_cote like \'!!comme_cote!!%\'','Selección de ejemplares a partir del inicio de su signatura','1 2','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"comme_cote\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Inicio de la signatura]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>20</SIZE>\r\n <MAXSIZE>20</MAXSIZE>\r\n</OPTIONS> \n </FIELD>\n</FIELDS>'),(6,'SELECT','Nunca prestados','SELECT expl_id as object_id, \'EXPL\' as object_type, concat(\"LIVRE \",tit1) as Titre FROM notices join exemplaires on expl_notice=notice_id LEFT JOIN pret_archive ON arc_expl_notice = notice_id where arc_expl_id IS NULL AND expl_id IS NOT NULL UNION SELECT expl_id as object_id, \'EXPL\' as object_type, concat(\"PERIO \",tit1, \" Numéro : \",bulletin_numero) as Titre FROM (bulletins INNER JOIN notices ON bulletins.bulletin_notice = notices.notice_id) INNER JOIN exemplaires on expl_bulletin=bulletin_id LEFT JOIN pret_archive ON expl_id = arc_expl_id WHERE pret_archive.arc_id Is Null','Añade a una cesta los ejemplares que nunca se han prestado','1 2',NULL),(7,'SELECT','Selección de ejemplares por estado','select expl_id as object_id, \'EXPL\' as object_type from exemplaires where expl_statut in (!!statut!!)','','1 2','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"statut\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[estado]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from docs_statut]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(8,'SELECT','Selección de ejemplares por localización, sección, estado, propietario','select expl_id as object_id, \'EXPL\' as object_type from exemplaires where expl_section in (!!section!!) and expl_location in (!!location!!) and expl_statut in (!!statut!!) and expl_owner=!!proprio!! ','','1 2','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"section\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Sección]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idsection, section_libelle from docs_section order by 2]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME=\"location\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Localización]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idlocation, location_libelle from docs_location order by 2]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME=\"statut\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Estado]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from docs_statut order by 2]]></QUERY>\r\n <MULTIPLE>yes</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME=\"proprio\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Proprietario]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idlender, lender_libelle from lenders order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(10,'ACTION','Déplacement des bulletins d\'un panier vers un autre périodique','update bulletins set bulletin_notice=!!new_perio!! where bulletin_id in (CADDIE(BULL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_perio\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau périodique]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select notice_id, tit1 from notices where niveau_biblio=\'s\' and niveau_hierar=\'1\' order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(11,'SELECT','Sélection / pointage des bulletins sans articles','select distinct bulletin_id as object_id,\'BULL\' as object_type from bulletins left join analysis on analysis_bulletin=bulletin_id where analysis_bulletin is null','',' 1 ',''),(13,'SELECT','Sélection / pointage de bulletins par date','select bulletin_id as object_id, \'BULL\' as object_type from bulletins where date_date>\'!!dated!!\' AND date_date<\'!!datef!!\'','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"dated\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[date de début :]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR=\"date_box\"></OPTIONS>\n </FIELD>\n <FIELD NAME=\"datef\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[date de fin :]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR=\"date_box\"></OPTIONS>\n </FIELD>\n</FIELDS>'),(14,'ACTION','Changement de code statistique des exemplaires d\'un panier','update exemplaires set expl_codestat=\'!!new_codestat!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_codestat\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau code statistique]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idcode, codestat_libelle from docs_codestat order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(16,'ACTION','Changement de date de dépôt des exemplaires d\'un panier','update exemplaires set expl_date_depot=\'!!new_date_depot!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_date_depot\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle date de dépôt]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR=\"date_box\"></OPTIONS> \n </FIELD>\n</FIELDS>'),(18,'ACTION','Changement de date de retour des exemplaires d\'un panier','update exemplaires set expl_date_retour=\'!!new_date_retour!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_date_retour\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle date de retour]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR=\"date_box\"></OPTIONS> \n </FIELD>\n</FIELDS>'),(19,'ACTION','Changement de localisation des exemplaires d\'un panier','update exemplaires set expl_location=\'!!new_location!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_location\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle localisation]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idlocation, location_libelle from docs_location order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(20,'ACTION','Changement de message des exemplaires d\'un panier','update exemplaires set expl_note=\'!!new_note!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_note\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouveau message]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(21,'ACTION','Changement d\'une partie de la cote des exemplaires d\'un panier','update exemplaires set expl_cote=replace(expl_cote, \'!!motif_1!!\', \'!!motif_2!!\') where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"motif_1\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Remplacer]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS> \n </FIELD>\n <FIELD NAME=\"motif_2\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Par]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS> \n </FIELD>\n</FIELDS>'),(22,'ACTION','Changement de prix des exemplaires d\'un panier','update exemplaires set expl_prix=\'!!new_prix!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_prix\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouveau prix]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(23,'ACTION','Changement de section des exemplaires d\'un panier','update exemplaires set expl_section=\'!!new_section!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_section\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle section]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idsection, section_libelle from docs_section order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(24,'ACTION','Changement de statut des exemplaires d\'un panier','update exemplaires set expl_statut=\'!!new_statut!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_statut\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from docs_statut order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(25,'ACTION','Changement de support des exemplaires d\'un panier','update exemplaires set expl_typdoc=\'!!new_typdoc!!\' where expl_id in (CADDIE(EXPL))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_typdoc\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau support]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idtyp_doc, tdoc_libelle from docs_type order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(26,'SELECT','Sélection / Pointage des exemplaires en cours de prêt','SELECT pret_idexpl as object_id, \'EXPL\' as object_type from pret','',' 1 ',''),(27,'SELECT','Sélection d\'exemplaires àpartir d\'un fichier de code-barres','select expl_id as object_id, \'EXPL\' as object_type from exemplaires where expl_cb in (!!fichier!!)','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"fichier\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[fichier]]></ALIAS>\n <TYPE>file_box</TYPE>\n<OPTIONS FOR=\"file_box\">\r\n <METHOD>1</METHOD>\r\n <TEMP_TABLE_NAME></TEMP_TABLE_NAME>\r\n <DATA_TYPE>1</DATA_TYPE>\r\n</OPTIONS> \n </FIELD>\n</FIELDS>'),(30,'ACTION','Changement de l\'indexation décimale des notices d\'un panier','update notices set notices.indexint=\'!!nouvelle_indexation!!\' where notice_id in (CADDIE(NOTI))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"nouvelle_indexation\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle indexation]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select indexint_id, concat(indexint_name,\' \', indexint_comment) from indexint order by indexint_name]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(31,'ACTION','Changement de statut des notices d\'un panier','update notices set statut=\'!!new_statut!!\' where notice_id in (CADDIE(NOTI))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_statut\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select id_notice_statut, gestion_libelle from notice_statut order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(32,'ACTION','Changement de type de document des notices d\'un panier','update notices set typdoc=!!new_typdoc!! where notice_id in (CADDIE(NOTI))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_typdoc\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau type de document]]></ALIAS>\n <TYPE>list</TYPE>\n<OPTIONS FOR=\"list\">\r\n <MULTIPLE>no</MULTIPLE>\r\n <ITEMS>\r\n <ITEM VALUE=\"b\"><![CDATA[texte manuscrit]]></ITEM>\r\n <ITEM VALUE=\"c\"><![CDATA[partition musicale imprimée]]></ITEM>\r\n <ITEM VALUE=\"d\"><![CDATA[partition musicale manuscrite]]></ITEM>\r\n <ITEM VALUE=\"e\"><![CDATA[document cartographique imprimé]]></ITEM>\r\n <ITEM VALUE=\"f\"><![CDATA[document cartographique manuscrit]]></ITEM>\r\n <ITEM VALUE=\"g\"><![CDATA[document projeté ou vidéo]]></ITEM>\r\n <ITEM VALUE=\"i\"><![CDATA[enregistrement sonore non musical]]></ITEM>\r\n <ITEM VALUE=\"j\"><![CDATA[enregistrement sonore musical]]></ITEM>\r\n <ITEM VALUE=\"k\"><![CDATA[document graphique àdeux dimensions]]></ITEM>\r\n <ITEM VALUE=\"l\"><![CDATA[document électronique]]></ITEM>\r\n <ITEM VALUE=\"m\"><![CDATA[document multimédia]]></ITEM>\r\n <ITEM VALUE=\"r\"><![CDATA[objet à3 dimensions, artefacts, ...]]></ITEM>\r\n </ITEMS>\r\n <UNSELECT_ITEM VALUE=\"a\"><![CDATA[texte imprimé]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(33,'ACTION','Copie des auteurs des notices mères d\'un panier vers leurs notices filles','INSERT ignore INTO responsability (responsability_author, responsability_notice, responsability_type, responsability_fonction) \r\nSELECT \r\nr2.responsability_author, num_notice, r2.responsability_type, r2.responsability_fonction \r\nFROM notices_relations JOIN responsability r2 ON linked_notice = r2.responsability_notice where linked_notice IN (CADDIE(NOTI))','Ne rajoute des auteurs qu\'aux notices filles qui n\'ont pas déjàd\'auteurs définis.',' 1 ',''),(34,'SELECT','Sélection / pointage des notices ayant des notices filles','select distinct linked_notice as object_id, \'NOTI\' as object_type from notices_relations','',' 1 ',''),(35,'SELECT','Sélection / pointage des notices ayant une notice mère','select distinct num_notice as object_id, \'NOTI\' as object_type from notices_relations','',' 1 ',''),(36,'SELECT','Sélection / pointage de notices par type de document et statut','SELECT DISTINCT notice_id as object_id, \"NOTI\" as object_type FROM notices where typdoc =!!type_doc!! and statut =\'!!statut!!\'','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"type_doc\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Type de document]]></ALIAS>\n <TYPE>list</TYPE>\n<OPTIONS FOR=\"list\">\r\n <MULTIPLE>no</MULTIPLE>\r\n <ITEMS>\r\n <ITEM VALUE=\"a\"><![CDATA[texte imprimé]]></ITEM>\r\n <ITEM VALUE=\"b\"><![CDATA[texte manuscrit]]></ITEM>\r\n <ITEM VALUE=\"c\"><![CDATA[partition musicale imprimée]]></ITEM>\r\n <ITEM VALUE=\"d\"><![CDATA[partition musicale manuscrite]]></ITEM>\r\n <ITEM VALUE=\"e\"><![CDATA[document cartographique imprimé]]></ITEM>\r\n <ITEM VALUE=\"f\"><![CDATA[document cartographique manuscrit]]></ITEM>\r\n <ITEM VALUE=\"g\"><![CDATA[document projeté ou vidéo]]></ITEM>\r\n <ITEM VALUE=\"i\"><![CDATA[enregistrement sonore non musical]]></ITEM>\r\n <ITEM VALUE=\"j\"><![CDATA[enregistrement sonore musical]]></ITEM>\r\n <ITEM VALUE=\"k\"><![CDATA[document graphique àdeux dimensions]]></ITEM>\r\n <ITEM VALUE=\"l\"><![CDATA[document électronique]]></ITEM>\r\n <ITEM VALUE=\"m\"><![CDATA[document multimédia]]></ITEM>\r\n <ITEM VALUE=\"r\"><![CDATA[objet à3 dimensions, artefacts, ...]]></ITEM>\r\n </ITEMS>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n <FIELD NAME=\"statut\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Statut notice]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY>select id_notice_statut, gestion_libelle from notice_statut order by 2</QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(37,'SELECT','Sélection / pointage des notices sans notice-fille ni notice-mère','SELECT DISTINCT notice_id as object_id, \"NOTI\" as object_type FROM `notices` left join notices_relations nr1 on nr1.num_notice=notice_id left join notices_relations nr2 on nr2.linked_notice=notice_id where nr1.num_notice is null and nr2.linked_notice is null','',' 1 ',''),(39,'SELECT','Sélection des exemplaires non empruntés depuis une certaine date','select expl_id as object_id,\'EXPL\'as object_type FROM exemplaires where date_format(last_loan_date,\'%Y%m%d\') < date_format(\'!!dat!!\',\'%Y%m%d\')','','1','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"dat\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Date dernier prêt <]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR=\"date_box\"></OPTIONS>\n </FIELD>\n</FIELDS>'),(5,'ACTION','Cambio de estado de los ejemplares','update exemplaires set expl_statut=!!nouveau_statut!! where expl_id in (CADDIE(EXPL))','Permite cambiar el estado de los ejemplares de una cesta','1 4 3 2','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"nouveau_statut\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[nouveau_statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY>SELECT idstatut, statut_libelle FROM docs_statut</QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(9,'ACTION','Cambiar la sección de los ejemplares','update exemplaires set expl_section=!!nouvelle_section!! where expl_id in (CADDIE(EXPL))','','1 4 3 2','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"nouvelle_section\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[nueva sección]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select * from docs_section order by section_libelle]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[Escoge una sección]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'); 1307 /*!40000 ALTER TABLE `caddie_procs` ENABLE KEYS */; 1308 UNLOCK TABLES; 1309 1310 -- 1311 -- Table structure for table `cashdesk` 1142 1312 -- 1143 1313 1144 1314 DROP TABLE IF EXISTS `cashdesk`; 1315 /*!40101 SET @saved_cs_client = @@character_set_client */; 1316 /*!40101 SET character_set_client = utf8 */; 1145 1317 CREATE TABLE `cashdesk` ( 1146 1318 `cashdesk_id` int(10) unsigned NOT NULL AUTO_INCREMENT, 1147 `cashdesk_name` varchar(255) NOT NULL DEFAULT '',1148 `cashdesk_autorisations` varchar(255) NOT NULL DEFAULT '',1149 `cashdesk_transactypes` varchar(255) NOT NULL DEFAULT '',1319 `cashdesk_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1320 `cashdesk_autorisations` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1321 `cashdesk_transactypes` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1150 1322 `cashdesk_cashbox` int(10) unsigned NOT NULL DEFAULT '0', 1151 1323 PRIMARY KEY (`cashdesk_id`) 1152 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1153 1154 1155 -- 1156 -- Volcar la base de datos para la tabla `caddie_procs` 1157 -- 1158 1159 1160 -- -------------------------------------------------------- 1161 1162 -- 1163 -- Estructura de tabla para la tabla `cashdesk_locations` 1324 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1325 /*!40101 SET character_set_client = @saved_cs_client */; 1326 1327 -- 1328 -- Dumping data for table `cashdesk` 1329 -- 1330 1331 LOCK TABLES `cashdesk` WRITE; 1332 /*!40000 ALTER TABLE `cashdesk` DISABLE KEYS */; 1333 /*!40000 ALTER TABLE `cashdesk` ENABLE KEYS */; 1334 UNLOCK TABLES; 1335 1336 -- 1337 -- Table structure for table `cashdesk_locations` 1164 1338 -- 1165 1339 1166 1340 DROP TABLE IF EXISTS `cashdesk_locations`; 1341 /*!40101 SET @saved_cs_client = @@character_set_client */; 1342 /*!40101 SET character_set_client = utf8 */; 1167 1343 CREATE TABLE `cashdesk_locations` ( 1168 1344 `cashdesk_loc_cashdesk_num` int(10) unsigned NOT NULL DEFAULT '0', 1169 1345 `cashdesk_loc_num` int(10) unsigned NOT NULL DEFAULT '0', 1170 1346 PRIMARY KEY (`cashdesk_loc_cashdesk_num`,`cashdesk_loc_num`) 1171 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1172 1173 1174 -- 1175 -- Volcar la base de datos para la tabla `cashdesk_locations` 1176 -- 1177 1178 1179 -- -------------------------------------------------------- 1180 1181 -- 1182 -- Estructura de tabla para la tabla `cashdesk_sections` 1347 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1348 /*!40101 SET character_set_client = @saved_cs_client */; 1349 1350 -- 1351 -- Dumping data for table `cashdesk_locations` 1352 -- 1353 1354 LOCK TABLES `cashdesk_locations` WRITE; 1355 /*!40000 ALTER TABLE `cashdesk_locations` DISABLE KEYS */; 1356 /*!40000 ALTER TABLE `cashdesk_locations` ENABLE KEYS */; 1357 UNLOCK TABLES; 1358 1359 -- 1360 -- Table structure for table `cashdesk_sections` 1183 1361 -- 1184 1362 1185 1363 DROP TABLE IF EXISTS `cashdesk_sections`; 1364 /*!40101 SET @saved_cs_client = @@character_set_client */; 1365 /*!40101 SET character_set_client = utf8 */; 1186 1366 CREATE TABLE `cashdesk_sections` ( 1187 1367 `cashdesk_section_cashdesk_num` int(10) unsigned NOT NULL DEFAULT '0', 1188 1368 `cashdesk_section_num` int(10) unsigned NOT NULL DEFAULT '0', 1189 1369 PRIMARY KEY (`cashdesk_section_cashdesk_num`,`cashdesk_section_num`) 1190 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1191 1192 1193 -- 1194 -- Volcar la base de datos para la tabla `cashdesk_sections` 1195 -- 1196 1197 -- -------------------------------------------------------- 1198 1199 -- 1200 -- Estructura de tabla para la tabla `categ_custom` 1370 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1371 /*!40101 SET character_set_client = @saved_cs_client */; 1372 1373 -- 1374 -- Dumping data for table `cashdesk_sections` 1375 -- 1376 1377 LOCK TABLES `cashdesk_sections` WRITE; 1378 /*!40000 ALTER TABLE `cashdesk_sections` DISABLE KEYS */; 1379 /*!40000 ALTER TABLE `cashdesk_sections` ENABLE KEYS */; 1380 UNLOCK TABLES; 1381 1382 -- 1383 -- Table structure for table `categ_custom` 1201 1384 -- 1202 1385 1203 1386 DROP TABLE IF EXISTS `categ_custom`; 1387 /*!40101 SET @saved_cs_client = @@character_set_client */; 1388 /*!40101 SET character_set_client = utf8 */; 1204 1389 CREATE TABLE `categ_custom` ( 1205 1390 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 1206 1391 `num_type` int(10) unsigned NOT NULL DEFAULT '0', 1207 `name` varchar(255) NOT NULL DEFAULT '',1208 `titre` varchar(255) DEFAULT NULL,1209 `type` varchar(10) NOT NULL DEFAULT 'text',1210 `datatype` varchar(10) NOT NULL DEFAULT '',1211 `options` text ,1392 `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1393 `titre` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 1394 `type` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'text', 1395 `datatype` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1396 `options` text COLLATE utf8_unicode_ci, 1212 1397 `multiple` int(11) NOT NULL DEFAULT '0', 1213 1398 `obligatoire` int(11) NOT NULL DEFAULT '0', … … 1219 1404 `opac_sort` int(11) NOT NULL DEFAULT '0', 1220 1405 PRIMARY KEY (`idchamp`) 1221 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1222 1223 1224 -- 1225 -- Volcar la base de datos para la tabla `categ_custom` 1226 -- 1227 1228 -- -------------------------------------------------------- 1229 1230 -- 1231 -- Estructura de tabla para la tabla `categ_custom_lists` 1406 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1407 /*!40101 SET character_set_client = @saved_cs_client */; 1408 1409 -- 1410 -- Dumping data for table `categ_custom` 1411 -- 1412 1413 LOCK TABLES `categ_custom` WRITE; 1414 /*!40000 ALTER TABLE `categ_custom` DISABLE KEYS */; 1415 /*!40000 ALTER TABLE `categ_custom` ENABLE KEYS */; 1416 UNLOCK TABLES; 1417 1418 -- 1419 -- Table structure for table `categ_custom_lists` 1232 1420 -- 1233 1421 … … 1237 1425 CREATE TABLE `categ_custom_lists` ( 1238 1426 `categ_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 1239 `categ_custom_list_value` varchar(255) DEFAULT NULL,1240 `categ_custom_list_lib` varchar(255) DEFAULT NULL,1427 `categ_custom_list_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 1428 `categ_custom_list_lib` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 1241 1429 `ordre` int(11) DEFAULT NULL, 1242 1430 KEY `editorial_custom_champ` (`categ_custom_champ`), 1243 1431 KEY `editorial_champ_list_value` (`categ_custom_champ`,`categ_custom_list_value`) 1244 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1245 1246 1247 -- 1248 -- Volcar la base de datos para la tabla `categ_custom_lists` 1249 -- 1250 1251 -- -------------------------------------------------------- 1252 1253 -- 1254 -- Estructura de tabla para la tabla `categ_custom_values` 1432 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1433 /*!40101 SET character_set_client = @saved_cs_client */; 1434 1435 -- 1436 -- Dumping data for table `categ_custom_lists` 1437 -- 1438 1439 LOCK TABLES `categ_custom_lists` WRITE; 1440 /*!40000 ALTER TABLE `categ_custom_lists` DISABLE KEYS */; 1441 /*!40000 ALTER TABLE `categ_custom_lists` ENABLE KEYS */; 1442 UNLOCK TABLES; 1443 1444 -- 1445 -- Table structure for table `categ_custom_values` 1255 1446 -- 1256 1447 … … 1261 1452 `categ_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 1262 1453 `categ_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', 1263 `categ_custom_small_text` varchar(255) DEFAULT NULL,1264 `categ_custom_text` text ,1454 `categ_custom_small_text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 1455 `categ_custom_text` text COLLATE utf8_unicode_ci, 1265 1456 `categ_custom_integer` int(11) DEFAULT NULL, 1266 1457 `categ_custom_date` date DEFAULT NULL, 1267 1458 `categ_custom_float` float DEFAULT NULL, 1268 1459 KEY `editorial_custom_champ` (`categ_custom_champ`), 1269 KEY `editorial_custom_origine` (`categ_custom_origine`) 1270 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1271 1272 -- 1273 -- Volcar la base de datos para la tabla `categ_custom_values` 1274 -- 1275 1276 -- -------------------------------------------------------- 1277 1278 -- 1279 -- Estructura de tabla para la tabla `categories` 1460 KEY `editorial_custom_origine` (`categ_custom_origine`), 1461 KEY `i_ccv_st` (`categ_custom_small_text`), 1462 KEY `i_ccv_t` (`categ_custom_text`(255)), 1463 KEY `i_ccv_i` (`categ_custom_integer`), 1464 KEY `i_ccv_d` (`categ_custom_date`), 1465 KEY `i_ccv_f` (`categ_custom_float`) 1466 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1467 /*!40101 SET character_set_client = @saved_cs_client */; 1468 1469 -- 1470 -- Dumping data for table `categ_custom_values` 1471 -- 1472 1473 LOCK TABLES `categ_custom_values` WRITE; 1474 /*!40000 ALTER TABLE `categ_custom_values` DISABLE KEYS */; 1475 /*!40000 ALTER TABLE `categ_custom_values` ENABLE KEYS */; 1476 UNLOCK TABLES; 1477 1478 -- 1479 -- Table structure for table `categories` 1280 1480 -- 1281 1481 1282 1482 DROP TABLE IF EXISTS `categories`; 1283 CREATE TABLE IF NOT EXISTS `categories` ( 1284 `num_thesaurus` int(3) unsigned NOT NULL DEFAULT '1', 1483 /*!40101 SET @saved_cs_client = @@character_set_client */; 1484 /*!40101 SET character_set_client = utf8 */; 1485 CREATE TABLE `categories` ( 1486 `num_thesaurus` int(3) unsigned NOT NULL DEFAULT '1', 1285 1487 `num_noeud` int(9) unsigned NOT NULL DEFAULT '0', 1286 1488 `langue` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'fr_FR', … … 1296 1498 KEY `libelle_categorie` (`libelle_categorie`(5)) 1297 1499 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1298 1299 -- 1300 -- Volcar la base de datos para la tabla `categories` 1301 -- 1302 1303 INSERT INTO `categories` (`num_thesaurus`, `num_noeud`, `langue`, `libelle_categorie`, `note_application`, `comment_public`, `comment_voir`, `index_categorie`, `path_word_categ`, `index_path_word_categ`) VALUES 1304 (1, 3, 'fr_FR', '~termes non classés', '', '', '', ' termes non classes ', '', ''), 1305 (1, 2, 'fr_FR', '~termes orphelins', '', '', '', ' termes orphelins ', '', ''), 1306 (1, 2, 'es_ES', '~descripotres no clasificados', '', '', '', ' descriptores no clasificados ', '', ''), 1307 (1, 3, 'es_ES', '~descriptores huérfanos', '', '', '', ' descriptores huérfanos ', '', ''); 1308 1309 -- -------------------------------------------------------- 1310 1311 -- 1312 -- Estructura de tabla para la tabla `classements` 1500 /*!40101 SET character_set_client = @saved_cs_client */; 1501 1502 -- 1503 -- Dumping data for table `categories` 1504 -- 1505 1506 LOCK TABLES `categories` WRITE; 1507 /*!40000 ALTER TABLE `categories` DISABLE KEYS */; 1508 INSERT INTO `categories` VALUES (1,2512,'fr_FR','~termes non classés','','','',' termes non classes ','',''),(1,1378,'fr_FR','Art et culture','','','',' art culture ','',''),(1,1379,'fr_FR','Institutions et politique','','','',' institutions politique ','',''),(1,1380,'fr_FR','Jeunesse','','','',' jeunesse ','',''),(1,1381,'fr_FR','Sciences','','','',' sciences ','',''),(1,1382,'fr_FR','Sciences humaines','','','',' sciences humaines ','',''),(1,1383,'fr_FR','Société','','','',' societe ','',''),(1,1384,'fr_FR','Sports et loisirs','','','',' sports loisirs ','',''),(1,1385,'fr_FR','Techniques','','','',' techniques ','',''),(1,1386,'fr_FR','Vie pratique','','','',' vie pratique ','',''),(1,1387,'fr_FR','Zones géographiques','','','',' zones geographiques ','',''),(1,1388,'fr_FR','Essais','','','',' essais ','',''),(1,1389,'fr_FR','Illustration','','','',' illustration ','',''),(1,1390,'fr_FR','Architecture','','','',' architecture ','',''),(1,1391,'fr_FR','Bande dessinée','','','',' bande dessinee ','',''),(1,1392,'fr_FR','Cinéma','','','',' cinema ','',''),(1,1393,'fr_FR','Design','','','',' design ','',''),(1,1394,'fr_FR','Littérature','','','',' litterature ','',''),(1,1395,'fr_FR','Livre','','','',' livre ','',''),(1,1396,'fr_FR','Mobilier et objets d\'art','','','',' mobilier objets art ','',''),(1,1397,'fr_FR','Musées','','','',' musees ','',''),(1,1398,'fr_FR','Musique','','','',' musique ','',''),(1,1399,'fr_FR','Peinture','','','',' peinture ','',''),(1,1400,'fr_FR','Photographie','','','',' photographie ','',''),(1,1401,'fr_FR','Sculpture','','','',' sculpture ','',''),(1,1402,'fr_FR','Architectes','','','',' architectes ','',''),(1,1403,'fr_FR','Moyen-Age','','','',' moyen age ','',''),(1,1404,'fr_FR','Ecoles et styles','','','',' ecoles styles ','',''),(1,1405,'fr_FR','Edifices','','','',' edifices ','',''),(1,1406,'fr_FR','Géographie','','','',' geographie ','',''),(1,1407,'fr_FR','XIXème siècle','','','',' xixeme siecle ','',''),(1,1408,'fr_FR','Histoire','','','',' histoire ','',''),(1,1409,'fr_FR','XXème siècle','','','',' xxeme siecle ','',''),(1,1410,'fr_FR','Afrique','','','',' afrique ','',''),(1,1411,'fr_FR','Récit historique','','','',' recit historique ','',''),(1,1412,'fr_FR','Héroïc fantasy','','','',' heroic fantasy ','',''),(1,1413,'fr_FR','Fantastique','','','',' fantastique ','',''),(1,1414,'fr_FR','Science-fiction','','','',' science fiction ','',''),(1,1415,'fr_FR','Policier','','','',' policier ','',''),(1,1416,'fr_FR','Humour','','','',' humour ','',''),(1,1417,'fr_FR','Aventure','','','',' aventure ','',''),(1,1418,'fr_FR','Manga','','','',' manga ','',''),(1,1419,'fr_FR','Réalité','','','',' realite ','',''),(1,1420,'fr_FR','Par genre (sélection)','','','',' par genre selection ','',''),(1,1421,'fr_FR','Antiquité grecque et romaine','','','',' antiquite grecque romaine ','',''),(1,1422,'fr_FR','Moyen-Age','','','',' moyen age ','',''),(1,1423,'fr_FR','Renaissance','','','',' renaissance ','',''),(1,1424,'fr_FR','XVIIème siècle','','','',' xviieme siecle ','',''),(1,1425,'fr_FR','XVIIIème siècle','','','',' xviiieme siecle ','',''),(1,1426,'fr_FR','De 1800 à1849','','','',' 1800 1849 ','',''),(1,1427,'fr_FR','De 1850 à1899','','','',' 1850 1899 ','',''),(1,1428,'fr_FR','De 1900 à1949','','','',' 1900 1949 ','',''),(1,1429,'fr_FR','De 1950 à1999 (sélection)','','','',' 1950 1999 selection ','',''),(1,1430,'fr_FR','De 2000 àaujourd\'hui (sélection)','','','',' 2000 aujourd hui selection ','',''),(1,1431,'fr_FR','Roman historique','','','',' roman historique ','',''),(1,1432,'fr_FR','Récits de voyage et d\'exploration','','','',' recits voyage exploration ','',''),(1,1433,'fr_FR','Fantastique et merveilleux','','','',' fantastique merveilleux ','',''),(1,1434,'fr_FR','Roman policier','','','',' roman policier ','',''),(1,1435,'fr_FR','Science-fiction','','','',' science fiction ','',''),(1,1436,'fr_FR','Nouvelles','','','',' nouvelles ','',''),(1,1437,'fr_FR','Littérature en miettes','','','',' litterature miettes ','',''),(1,1438,'fr_FR','Distorsions','','','',' distorsions ','',''),(1,1439,'fr_FR','Mémoires et autobiographies','','','',' memoires autobiographies ','',''),(1,1440,'fr_FR','Journaux et carnets','','','',' journaux carnets ','',''),(1,1441,'fr_FR','Correspondance','','','',' correspondance ','',''),(1,1442,'fr_FR','Littérature asiatique','','','',' litterature asiatique ','',''),(1,1443,'fr_FR','L\'écrivain et son oeuvre','','','',' ecrivain son oeuvre ','',''),(1,1444,'fr_FR','Le livre comme miroir','','','',' livre comme miroir ','',''),(1,1445,'fr_FR','Littérature américaine','','','',' litterature americaine ','',''),(1,1446,'fr_FR','Poésie','','','',' poesie ','',''),(1,1447,'fr_FR','Poésie','','','',' poesie ','',''),(1,1448,'fr_FR','Poésie','','','',' poesie ','',''),(1,1449,'fr_FR','Poésie','','','',' poesie ','',''),(1,1450,'fr_FR','Poésie','','','',' poesie ','',''),(1,1451,'fr_FR','Poésie','','','',' poesie ','',''),(1,1452,'fr_FR','Poésie','','','',' poesie ','',''),(1,1453,'fr_FR','Poésie','','','',' poesie ','',''),(1,1454,'fr_FR','Poésie','','','',' poesie ','',''),(1,1455,'fr_FR','Littérature hispano-américaine','','','',' litterature hispano americaine ','',''),(1,1456,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1457,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1458,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1459,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1460,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1461,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1462,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1463,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1464,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1465,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1466,'fr_FR','Littérature allemande','','','',' litterature allemande ','',''),(1,1467,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1468,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1469,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1470,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1471,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1472,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1473,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1474,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1475,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,1476,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1477,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1478,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1479,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1480,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1481,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1482,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1483,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,1484,'fr_FR','Antiquité','','','',' antiquite ','',''),(1,1485,'fr_FR','Moyen-Age','','','',' moyen age ','',''),(1,1486,'fr_FR','Renaissance','','','',' renaissance ','',''),(1,1487,'fr_FR','XVIIème siècle','','','',' xviieme siecle ','',''),(1,1488,'fr_FR','XVIIIème siècle','','','',' xviiieme siecle ','',''),(1,1489,'fr_FR','XIXème siècle','','','',' xixeme siecle ','',''),(1,1490,'fr_FR','XXème siècle','','','',' xxeme siecle ','',''),(1,1491,'fr_FR','Littérature','','','',' litterature ','',''),(1,1492,'fr_FR','Par sujet','','','',' par sujet ','',''),(1,1493,'fr_FR','Biographies','','','',' biographies ','',''),(1,1494,'fr_FR','Essais politiques','','','',' essais politiques ','',''),(1,1495,'fr_FR','France','','','',' france ','',''),(1,1496,'fr_FR','Europe','','','',' europe ','',''),(1,1497,'fr_FR','Monde','','','',' monde ','',''),(1,1498,'fr_FR','Science politique','','','',' science politique ','',''),(1,1499,'fr_FR','Administration','','','',' administration ','',''),(1,1500,'fr_FR','Citoyenneté','','','',' citoyennete ','',''),(1,1501,'fr_FR','Président et gouvernement','','','',' president gouvernement ','',''),(1,1502,'fr_FR','Parlement','','','',' parlement ','',''),(1,1503,'fr_FR','Justice','','','',' justice ','',''),(1,1504,'fr_FR','Collectivités territoriales','','','',' collectivites territoriales ','',''),(1,1505,'fr_FR','Défense nationale - Sécurité publique','','','',' defense nationale securite publique ','',''),(1,1506,'fr_FR','Droit','','','',' droit ','',''),(1,1507,'fr_FR','Elections','','','',' elections ','',''),(1,1508,'fr_FR','Fiscalité','','','',' fiscalite ','',''),(1,1509,'fr_FR','Partis politiques','','','',' partis politiques ','',''),(1,1510,'fr_FR','Protection sociale','','','',' protection sociale ','',''),(1,1511,'fr_FR','Syndicats','','','',' syndicats ','',''),(1,1512,'fr_FR','Mondialisation','','','',' mondialisation ','',''),(1,1513,'fr_FR','Organisations internationales','','','',' organisations internationales ','',''),(1,1514,'fr_FR','Relations internationales','','','',' relations internationales ','',''),(1,1515,'fr_FR','Animaux','','','',' animaux ','',''),(1,1516,'fr_FR','Corps et santé','','','',' corps sante ','',''),(1,1517,'fr_FR','Découvrir le monde','','','',' decouvrir monde ','',''),(1,1518,'fr_FR','Eveil et apprentissage','','','',' eveil apprentissage ','',''),(1,1519,'fr_FR','Sports et loisirs','','','',' sports loisirs ','',''),(1,1520,'fr_FR','Nature et environnement','','','',' nature environnement ','',''),(1,1521,'fr_FR','Personnages extraordinaires et mondes imaginaires','','','',' personnages extraordinaires mondes imaginaires ','',''),(1,1522,'fr_FR','Art et culture','','','',' art culture ','',''),(1,1523,'fr_FR','Vivre ensemble','','','',' vivre ensemble ','',''),(1,1524,'fr_FR','Chat','','','',' chat ','',''),(1,1525,'fr_FR','Mammifères','','','',' mammiferes ','',''),(1,1526,'fr_FR','Par environnement','','','',' par environnement ','',''),(1,1527,'fr_FR','Champs','','','',' champs ','',''),(1,1528,'fr_FR','Forêt','','','',' foret ','',''),(1,1529,'fr_FR','Montagne','','','',' montagne ','',''),(1,1530,'fr_FR','Jungle','','','',' jungle ','',''),(1,1531,'fr_FR','Poissons','','','',' poissons ','',''),(1,1532,'fr_FR','Insectes','','','',' insectes ','',''),(1,1533,'fr_FR','Oiseaux','','','',' oiseaux ','',''),(1,1534,'fr_FR','Animaux menacés','','','',' animaux menaces ','',''),(1,1535,'fr_FR','Dinosaures','','','',' dinosaures ','',''),(1,1536,'fr_FR','Corps','','','',' corps ','',''),(1,1537,'fr_FR','Hygiène et santé','','','',' hygiene sante ','',''),(1,1538,'fr_FR','Nourriture','','','',' nourriture ','',''),(1,1539,'fr_FR','Vêtement et coiffure','','','',' vetement coiffure ','',''),(1,1540,'fr_FR','Avoir un bébé','','','',' avoir bebe ','',''),(1,1541,'fr_FR','Maladie','','','',' maladie ','',''),(1,1542,'fr_FR','Handicap','','','',' handicap ','',''),(1,1543,'fr_FR','Médecin et hôpital','','','',' medecin hopital ','',''),(1,1544,'fr_FR','Sexualité','','','',' sexualite ','',''),(1,1545,'fr_FR','Voyage','','','',' voyage ','',''),(1,1546,'fr_FR','Transports','','','',' transports ','',''),(1,1547,'fr_FR','Communiquer - S\'informer','','','',' communiquer s informer ','',''),(1,1548,'fr_FR','Géographie','','','',' geographie ','',''),(1,1549,'fr_FR','Préhistoire','','','',' prehistoire ','',''),(1,1550,'fr_FR','Amérique','','','',' amerique ','',''),(1,1551,'fr_FR','Histoire','','','',' histoire ','',''),(1,1552,'fr_FR','Science et expériences','','','',' science experiences ','',''),(1,1553,'fr_FR','Espace - Planètes','','','',' espace planetes ','',''),(1,1554,'fr_FR','Premiers acquis','','','',' premiers acquis ','',''),(1,1555,'fr_FR','Autour du langage','','','',' autour langage ','',''),(1,1556,'fr_FR','Vers l\'autonomie','','','',' vers autonomie ','',''),(1,1557,'fr_FR','Langues étrangères','','','',' langues etrangeres ','',''),(1,1558,'fr_FR','Informatique','','','',' informatique ','',''),(1,1559,'fr_FR','Activités manuelles','','','',' activites manuelles ','',''),(1,1560,'fr_FR','Cuisine','','','',' cuisine ','',''),(1,1561,'fr_FR','Jardinage','','','',' jardinage ','',''),(1,1562,'fr_FR','Sport','','','',' sport ','',''),(1,1563,'fr_FR','Jeux et jouets','','','',' jeux jouets ','',''),(1,1564,'fr_FR','Déguisements','','','',' deguisements ','',''),(1,1565,'fr_FR','Dessin et peinture','','','',' dessin peinture ','',''),(1,1566,'fr_FR','Enigmes et devinettes','','','',' enigmes devinettes ','',''),(1,1567,'fr_FR','Adjectif','','','',' adjectif ','',''),(1,1568,'fr_FR','Campagne','','','',' campagne ','',''),(1,1569,'fr_FR','Montagne','','','',' montagne ','',''),(1,1570,'fr_FR','Forêt','','','',' foret ','',''),(1,1571,'fr_FR','Mer et océan','','','',' mer ocean ','',''),(1,1572,'fr_FR','Désert','','','',' desert ','',''),(1,1573,'fr_FR','Ville','','','',' ville ','',''),(1,1574,'fr_FR','Air','','','',' air ','',''),(1,1575,'fr_FR','Eau','','','',' eau ','',''),(1,1576,'fr_FR','Feu','','','',' feu ','',''),(1,1577,'fr_FR','Saisons','','','',' saisons ','',''),(1,1578,'fr_FR','Arbres','','','',' arbres ','',''),(1,1579,'fr_FR','Fleurs','','','',' fleurs ','',''),(1,1580,'fr_FR','Météo','','','',' meteo ','',''),(1,1581,'fr_FR','Protéger l\'environnement','','','',' proteger environnement ','',''),(1,1582,'fr_FR','Fée','','','',' fee ','',''),(1,1583,'fr_FR','Sorcière','','','',' sorciere ','',''),(1,1584,'fr_FR','Monstre et dragon','','','',' monstre dragon ','',''),(1,1585,'fr_FR','Prince, princesse, roi et reine','','','',' prince princesse roi reine ','',''),(1,1586,'fr_FR','Ogre','','','',' ogre ','',''),(1,1587,'fr_FR','Nain et géant','','','',' nain geant ','',''),(1,1588,'fr_FR','Fantôme','','','',' fantome ','',''),(1,1589,'fr_FR','Pirate et corsaire','','','',' pirate corsaire ','',''),(1,1590,'fr_FR','Extra-terrestre','','','',' extra terrestre ','',''),(1,1591,'fr_FR','Monde imaginaire','','','',' monde imaginaire ','',''),(1,1592,'fr_FR','Peinture et sculpture','','','',' peinture sculpture ','',''),(1,1593,'fr_FR','Roman','','','',' roman ','',''),(1,1594,'fr_FR','Théâtre','','','',' theatre ','',''),(1,1595,'fr_FR','Poésie','','','',' poesie ','',''),(1,1596,'fr_FR','Livre','','','',' livre ','',''),(1,1597,'fr_FR','Musique','','','',' musique ','',''),(1,1598,'fr_FR','Danse','','','',' danse ','',''),(1,1599,'fr_FR','Bande dessinée','','','',' bande dessinee ','',''),(1,1600,'fr_FR','Cinéma - Télévision','','','',' cinema television ','',''),(1,1601,'fr_FR','Photographie','','','',' photographie ','',''),(1,1602,'fr_FR','Architecture','','','',' architecture ','',''),(1,1603,'fr_FR','En famille','','','',' famille ','',''),(1,1604,'fr_FR','A l\'école et au collège','','','',' ecole college ','',''),(1,1605,'fr_FR','En société','','','',' societe ','',''),(1,1606,'fr_FR','Amour et sentiments','','','',' amour sentiments ','',''),(1,1607,'fr_FR','Enfants','','','',' enfants ','',''),(1,1608,'fr_FR','Fêtes','','','',' fetes ','',''),(1,1609,'fr_FR','Métiers','','','',' metiers ','',''),(1,1610,'fr_FR','Religion','','','',' religion ','',''),(1,1611,'fr_FR','C\'est compliqué','','','',' c est complique ','',''),(1,1612,'fr_FR','Astronomie','','','',' astronomie ','',''),(1,1613,'fr_FR','Plantes','','','',' plantes ','',''),(1,1614,'fr_FR','Chimie','','','',' chimie ','',''),(1,1615,'fr_FR','Ecologie','','','',' ecologie ','',''),(1,1616,'fr_FR','Génétique et évolution','','','',' genetique evolution ','',''),(1,1617,'fr_FR','Mathématiques','','','',' mathematiques ','',''),(1,1618,'fr_FR','Physique','','','',' physique ','',''),(1,1619,'fr_FR','Préhistoire','','','',' prehistoire ','',''),(1,1620,'fr_FR','Terre','','','',' terre ','',''),(1,1621,'fr_FR','Animaux','','','',' animaux ','',''),(1,1622,'fr_FR','Structure','','','',' structure ','',''),(1,1623,'fr_FR','Climatologie','','','',' climatologie ','',''),(1,1624,'fr_FR','Météorologie','','','',' meteorologie ','',''),(1,1625,'fr_FR','Océanographie - Hydrologie','','','',' oceanographie hydrologie ','',''),(1,1626,'fr_FR','Continents et relief','','','',' continents relief ','',''),(1,1627,'fr_FR','Roches et minéraux','','','',' roches mineraux ','',''),(1,1628,'fr_FR','Volcans','','','',' volcans ','',''),(1,1629,'fr_FR','Micro-organismes','','','',' micro organismes ','',''),(1,1630,'fr_FR','Invertébrés','','','',' invertebres ','',''),(1,1631,'fr_FR','Mollusques','','','',' mollusques ','',''),(1,1632,'fr_FR','Crustacés','','','',' crustaces ','',''),(1,1633,'fr_FR','Insectes','','','',' insectes ','',''),(1,1634,'fr_FR','Arachnides','','','',' arachnides ','',''),(1,1635,'fr_FR','Poissons','','','',' poissons ','',''),(1,1636,'fr_FR','Batraciens','','','',' batraciens ','',''),(1,1637,'fr_FR','Reptiles','','','',' reptiles ','',''),(1,1638,'fr_FR','Oiseaux','','','',' oiseaux ','',''),(1,1639,'fr_FR','Mammifères','','','',' mammiferes ','',''),(1,1640,'fr_FR','Marsupiaux','','','',' marsupiaux ','',''),(1,1641,'fr_FR','Chat','','','',' chat ','',''),(1,1642,'fr_FR','Primates','','','',' primates ','',''),(1,1643,'fr_FR','Chien','','','',' chien ','',''),(1,1644,'fr_FR','Félins','','','',' felins ','',''),(1,1645,'fr_FR','Rongeurs','','','',' rongeurs ','',''),(1,1646,'fr_FR','Archéologie','','','',' archeologie ','',''),(1,1647,'fr_FR','Communication et Information','','','',' communication information ','',''),(1,1648,'fr_FR','Economie','','','',' economie ','',''),(1,1649,'fr_FR','Démographie','','','',' demographie ','',''),(1,1650,'fr_FR','Géographie','','','',' geographie ','',''),(1,1651,'fr_FR','Histoire','','','',' histoire ','',''),(1,1652,'fr_FR','Langues - Linguistique','','','',' langues linguistique ','',''),(1,1653,'fr_FR','Médecine','','','',' medecine ','',''),(1,1654,'fr_FR','Philosophie','','','',' philosophie ','',''),(1,1655,'fr_FR','Psychologie - Psychanalyse','','','',' psychologie psychanalyse ','',''),(1,1656,'fr_FR','Sociologie','','','',' sociologie ','',''),(1,1657,'fr_FR','Ethnologie','','','',' ethnologie ','',''),(1,1658,'fr_FR','Bibliothéconomie','','','',' bibliotheconomie ','',''),(1,1659,'fr_FR','Société de l\'information','','','',' societe information ','',''),(1,1660,'fr_FR','Journalisme','','','',' journalisme ','',''),(1,1661,'fr_FR','Edition','','','',' edition ','',''),(1,1662,'fr_FR','Communication','','','',' communication ','',''),(1,1663,'fr_FR','Antiquité et mondes anciens','','','',' antiquite mondes anciens ','',''),(1,1664,'fr_FR','Moyen-Age','','','',' moyen age ','',''),(1,1665,'fr_FR','Renaissance','','','',' renaissance ','',''),(1,1666,'fr_FR','XVIIème siècle (De 1600 à1699)','','','',' xviieme siecle 1600 1699 ','',''),(1,1667,'fr_FR','XVIIIème siècle (De 1700 à1799)','','','',' xviiieme siecle 1700 1799 ','',''),(1,1668,'fr_FR','XIXème siècle (De 1800 à1899)','','','',' xixeme siecle 1800 1899 ','',''),(1,1669,'fr_FR','De 1900 à1914','','','',' 1900 1914 ','',''),(1,1670,'fr_FR','Première Guerre Mondiale (1914-1918)','','','',' premiere guerre mondiale 1914 1918 ','',''),(1,1671,'fr_FR','Entre-deux guerres (1919-1938)','','','',' entre deux guerres 1919 1938 ','',''),(1,1672,'fr_FR','Deuxième Guerre Mondiale (1939-1945)','','','',' deuxieme guerre mondiale 1939 1945 ','',''),(1,1673,'fr_FR','De 1946 à1999','','','',' 1946 1999 ','',''),(1,1674,'fr_FR','Depuis 2000','','','',' depuis 2000 ','',''),(1,1675,'fr_FR','Métaphysique','','','',' metaphysique ','',''),(1,1676,'fr_FR','Epistémologie','','','',' epistemologie ','',''),(1,1677,'fr_FR','Philosophie antique','','','',' philosophie antique ','',''),(1,1678,'fr_FR','Philosophie médiévale','','','',' philosophie medievale ','',''),(1,1679,'fr_FR','Philosophie orientale','','','',' philosophie orientale ','',''),(1,1680,'fr_FR','Philosophie occidentale moderne','','','',' philosophie occidentale moderne ','',''),(1,1681,'fr_FR','Amour','','','',' amour ','',''),(1,1682,'fr_FR','De l\'enfant àl\'âge adulte','','','',' enfant age adulte ','',''),(1,1683,'fr_FR','Problèmes et débats de société','','','',' problemes debats societe ','',''),(1,1684,'fr_FR','Vivre ensemble','','','',' vivre ensemble ','',''),(1,1685,'fr_FR','Criminalité','','','',' criminalite ','',''),(1,1686,'fr_FR','Emploi','','','',' emploi ','',''),(1,1687,'fr_FR','Enseignement et Formation','','','',' enseignement formation ','',''),(1,1688,'fr_FR','Couple','','','',' couple ','',''),(1,1689,'fr_FR','Famille','','','',' famille ','',''),(1,1690,'fr_FR','Environnement','','','',' environnement ','',''),(1,1691,'fr_FR','Handicap','','','',' handicap ','',''),(1,1692,'fr_FR','Illettrisme','','','',' illettrisme ','',''),(1,1693,'fr_FR','Migrations','','','',' migrations ','',''),(1,1694,'fr_FR','Mode et Costume','','','',' mode costume ','',''),(1,1695,'fr_FR','Urbanisme','','','',' urbanisme ','',''),(1,1696,'fr_FR','Religion','','','',' religion ','',''),(1,1697,'fr_FR','Esotérisme','','','',' esoterisme ','',''),(1,1698,'fr_FR','Sexualité','','','',' sexualite ','',''),(1,1699,'fr_FR','Solidarité et Action sociale','','','',' solidarite action sociale ','',''),(1,1700,'fr_FR','Logement','','','',' logement ','',''),(1,1701,'fr_FR','Vie associative','','','',' vie associative ','',''),(1,1702,'fr_FR','Enfants','','','',' enfants ','',''),(1,1703,'fr_FR','Jeunes','','','',' jeunes ','',''),(1,1704,'fr_FR','Femmes','','','',' femmes ','',''),(1,1705,'fr_FR','Hommes','','','',' hommes ','',''),(1,1706,'fr_FR','Troisième âge','','','',' troisieme age ','',''),(1,1707,'fr_FR','Conseil et Orientation','','','',' conseil orientation ','',''),(1,1708,'fr_FR','Enseignement primaire','','','',' enseignement primaire ','',''),(1,1709,'fr_FR','Enseignement secondaire','','','',' enseignement secondaire ','',''),(1,1710,'fr_FR','Enseignement supérieur','','','',' enseignement superieur ','',''),(1,1711,'fr_FR','Examens et Concours','','','',' examens concours ','',''),(1,1712,'fr_FR','Pédagogie','','','',' pedagogie ','',''),(1,1713,'fr_FR','Problèmes et Débats','','','',' problemes debats ','',''),(1,1714,'fr_FR','Drogue','','','',' drogue ','',''),(1,1715,'fr_FR','Bible','','','',' bible ','',''),(1,1716,'fr_FR','Christianisme','','','',' christianisme ','',''),(1,1717,'fr_FR','Sectes','','','',' sectes ','',''),(1,1718,'fr_FR','Bouddhisme','','','',' bouddhisme ','',''),(1,1719,'fr_FR','Hindouisme','','','',' hindouisme ','',''),(1,1720,'fr_FR','Judaïsme','','','',' judaisme ','',''),(1,1721,'fr_FR','Islam','','','',' islam ','',''),(1,1722,'fr_FR','Autres mouvements religieux','','','',' autres mouvements religieux ','',''),(1,1723,'fr_FR','Artisanat','','','',' artisanat ','',''),(1,1724,'fr_FR','Arts plastiques','','','',' arts plastiques ','',''),(1,1725,'fr_FR','Chasse et pêche','','','',' chasse peche ','',''),(1,1726,'fr_FR','Collections','','','',' collections ','',''),(1,1727,'fr_FR','Jardin','','','',' jardin ','',''),(1,1728,'fr_FR','Généalogie','','','',' genealogie ','',''),(1,1729,'fr_FR','Jeux et Jouets','','','',' jeux jouets ','',''),(1,1730,'fr_FR','Photographie','','','',' photographie ','',''),(1,1731,'fr_FR','Sports','','','',' sports ','',''),(1,1733,'fr_FR','Véhicules','','','',' vehicules ','',''),(1,1734,'fr_FR','Régions','','','',' regions ','',''),(1,1735,'fr_FR','Alsace','','','',' alsace ','',''),(1,1736,'fr_FR','Aquitaine','','','',' aquitaine ','',''),(1,1737,'fr_FR','Auvergne','','','',' auvergne ','',''),(1,1738,'fr_FR','Bourgogne','','','',' bourgogne ','',''),(1,1739,'fr_FR','Bretagne','','','',' bretagne ','',''),(1,1740,'fr_FR','Centre','','','',' centre ','',''),(1,1741,'fr_FR','Champagne-Ardenne','','','',' champagne ardenne ','',''),(1,1742,'fr_FR','Corse','','','',' corse ','',''),(1,1743,'fr_FR','Franche-Comté','','','',' franche comte ','',''),(1,1744,'fr_FR','Ile-de-France','','','',' ile france ','',''),(1,1745,'fr_FR','Littérature','','','',' litterature ','',''),(1,1746,'fr_FR','Languedoc-Roussillon','','','',' languedoc roussillon ','',''),(1,1747,'fr_FR','Limousin','','','',' limousin ','',''),(1,1748,'fr_FR','Pays de la Loire','','','',' pays loire ','',''),(1,1749,'fr_FR','Lorraine','','','',' lorraine ','',''),(1,1750,'fr_FR','Midi-Pyrénées','','','',' midi pyrenees ','',''),(1,1751,'fr_FR','Nord-Pas-de-Calais','','','',' nord pas calais ','',''),(1,1752,'fr_FR','Normandie (Haute-)','','','',' normandie haute ','',''),(1,1753,'fr_FR','Normandie (Basse-)','','','',' normandie basse ','',''),(1,1754,'fr_FR','Picardie','','','',' picardie ','',''),(1,1755,'fr_FR','Poitou-Charentes','','','',' poitou charentes ','',''),(1,1756,'fr_FR','Provence-Alpes-Côte d\'Azur','','','',' provence alpes cote azur ','',''),(1,1757,'fr_FR','Rhône-Alpes','','','',' rhone alpes ','',''),(1,1758,'fr_FR','Agriculture - Elevage','','','',' agriculture elevage ','',''),(1,1759,'fr_FR','Agroalimentaire','','','',' agroalimentaire ','',''),(1,1760,'fr_FR','Aviation - Aéronautique','','','',' aviation aeronautique ','',''),(1,1761,'fr_FR','Bâtiment et Travaux publics','','','',' batiment travaux publics ','',''),(1,1762,'fr_FR','Energie','','','',' energie ','',''),(1,1763,'fr_FR','Espace - Astronautique','','','',' espace astronautique ','',''),(1,1764,'fr_FR','Industries diverses','','','',' industries diverses ','',''),(1,1765,'fr_FR','Informatique','','','',' informatique ','',''),(1,1766,'fr_FR','Navigation','','','',' navigation ','',''),(1,1767,'fr_FR','Inventions','','','',' inventions ','',''),(1,1768,'fr_FR','Robots - Vie artificielle','','','',' robots vie artificielle ','',''),(1,1769,'fr_FR','Télécommunications','','','',' telecommunications ','',''),(1,1770,'fr_FR','Transports','','','',' transports ','',''),(1,1771,'fr_FR','Commerce','','','',' commerce ','',''),(1,1772,'fr_FR','Gestion de l\'entreprise','','','',' gestion entreprise ','',''),(1,1773,'fr_FR','Programmation','','','',' programmation ','',''),(1,1774,'fr_FR','Bases de données','','','',' bases donnees ','',''),(1,1775,'fr_FR','Logiciels','','','',' logiciels ','',''),(1,1776,'fr_FR','Réseaux','','','',' reseaux ','',''),(1,1777,'fr_FR','Internet','','','',' internet ','',''),(1,1778,'fr_FR','Animaux domestiques','','','',' animaux domestiques ','',''),(1,1779,'fr_FR','Bricolage','','','',' bricolage ','',''),(1,1780,'fr_FR','Cuisine','','','',' cuisine ','',''),(1,1781,'fr_FR','Développement personnel','','','',' developpement personnel ','',''),(1,1782,'fr_FR','Droit pratique','','','',' droit pratique ','',''),(1,1783,'fr_FR','Ecologie pratique','','','',' ecologie pratique ','',''),(1,1784,'fr_FR','Maison et Décoration','','','',' maison decoration ','',''),(1,1785,'fr_FR','Puériculture','','','',' puericulture ','',''),(1,1786,'fr_FR','Parents et Enfants','','','',' parents enfants ','',''),(1,1787,'fr_FR','Santé','','','',' sante ','',''),(1,1788,'fr_FR','Afrique','','','',' afrique ','',''),(1,1789,'fr_FR','Amérique du Nord','','','',' amerique nord ','',''),(1,1790,'fr_FR','Amérique centrale','','','',' amerique centrale ','',''),(1,1791,'fr_FR','Amérique du Sud','','','',' amerique sud ','',''),(1,1792,'fr_FR','Europe','','','',' europe ','',''),(1,1793,'fr_FR','Asie','','','',' asie ','',''),(1,1794,'fr_FR','Océanie','','','',' oceanie ','',''),(1,1795,'fr_FR','Antarctique','','','',' antarctique ','',''),(1,1796,'fr_FR','Arctique','','','',' arctique ','',''),(1,1797,'fr_FR','Afrique du Nord','','','',' afrique nord ','',''),(1,1798,'fr_FR','Afrique de l\'Ouest','','','',' afrique ouest ','',''),(1,1799,'fr_FR','Afrique centrale','','','',' afrique centrale ','',''),(1,1800,'fr_FR','Afrique de l\'Est','','','',' afrique est ','',''),(1,1801,'fr_FR','Afrique équatoriale','','','',' afrique equatoriale ','',''),(1,1802,'fr_FR','Afrique du Sud','','','',' afrique sud ','',''),(1,1803,'fr_FR','Iles de l\'océan indien','','','',' iles ocean indien ','',''),(1,1804,'fr_FR','Alaska','','','',' alaska ','',''),(1,1805,'fr_FR','Canada','','','',' canada ','',''),(1,1806,'fr_FR','Saint-Pierre-et-Miquelon','','','',' saint pierre miquelon ','',''),(1,1807,'fr_FR','Groenland','','','',' groenland ','',''),(1,1808,'fr_FR','Etats-Unis','','','',' etats unis ','',''),(1,1809,'fr_FR','Bermudes','','','',' bermudes ','',''),(1,1810,'fr_FR','Mexique','','','',' mexique ','',''),(1,1811,'fr_FR','Belize','','','',' belize ','',''),(1,1812,'fr_FR','Guatemala','','','',' guatemala ','',''),(1,1813,'fr_FR','Salvador','','','',' salvador ','',''),(1,1814,'fr_FR','Honduras','','','',' honduras ','',''),(1,1815,'fr_FR','Nicaragua','','','',' nicaragua ','',''),(1,1816,'fr_FR','Costa Rica','','','',' costa rica ','',''),(1,1817,'fr_FR','Panama','','','',' panama ','',''),(1,1818,'fr_FR','Antilles','','','',' antilles ','',''),(1,1819,'fr_FR','Colombie','','','',' colombie ','',''),(1,1820,'fr_FR','Vénézuela','','','',' venezuela ','',''),(1,1821,'fr_FR','Guyana','','','',' guyana ','',''),(1,1822,'fr_FR','Surinam','','','',' surinam ','',''),(1,1823,'fr_FR','Guyane française','','','',' guyane francaise ','',''),(1,1824,'fr_FR','Equateur','','','',' equateur ','',''),(1,1825,'fr_FR','Pérou','','','',' perou ','',''),(1,1826,'fr_FR','Brésil','','','',' bresil ','',''),(1,1827,'fr_FR','Bolivie','','','',' bolivie ','',''),(1,1828,'fr_FR','Chili','','','',' chili ','',''),(1,1829,'fr_FR','Paraguay','','','',' paraguay ','',''),(1,1830,'fr_FR','Argentine','','','',' argentine ','',''),(1,1831,'fr_FR','Uruguay','','','',' uruguay ','',''),(1,1832,'fr_FR','Europe du Nord','','','',' europe nord ','',''),(1,1833,'fr_FR','Europe de l\'Ouest','','','',' europe ouest ','',''),(1,1834,'fr_FR','Europe centrale','','','',' europe centrale ','',''),(1,1835,'fr_FR','Europe de l\'Est','','','',' europe est ','',''),(1,1836,'fr_FR','Europe du Sud','','','',' europe sud ','',''),(1,1837,'fr_FR','Balkans','','','',' balkans ','',''),(1,1838,'fr_FR','Moyen-Orient','','','',' moyen orient ','',''),(1,1839,'fr_FR','Transcaucasie','','','',' transcaucasie ','',''),(1,1840,'fr_FR','Asie centrale','','','',' asie centrale ','',''),(1,1841,'fr_FR','Asie de l\'Est','','','',' asie est ','',''),(1,1842,'fr_FR','Asie du Sud','','','',' asie sud ','',''),(1,1843,'fr_FR','Asie du Sud-Est','','','',' asie sud est ','',''),(1,1844,'fr_FR','Australie','','','',' australie ','',''),(1,1845,'fr_FR','Mélanésie','','','',' melanesie ','',''),(1,1846,'fr_FR','Micronésie','','','',' micronesie ','',''),(1,1847,'fr_FR','Polynésie','','','',' polynesie ','',''),(1,1848,'fr_FR','Maroc','','','',' maroc ','',''),(1,1849,'fr_FR','Tunisie','','','',' tunisie ','',''),(1,1850,'fr_FR','Algérie','','','',' algerie ','',''),(1,1851,'fr_FR','Libye','','','',' libye ','',''),(1,1852,'fr_FR','Sierra Leone','','','',' sierra leone ','',''),(1,1853,'fr_FR','Mauritanie','','','',' mauritanie ','',''),(1,1854,'fr_FR','Mali','','','',' mali ','',''),(1,1855,'fr_FR','Sénégal','','','',' senegal ','',''),(1,1856,'fr_FR','Guinée','','','',' guinee ','',''),(1,1857,'fr_FR','Côte d\'Ivoire','','','',' cote ivoire ','',''),(1,1858,'fr_FR','Gambie','','','',' gambie ','',''),(1,1859,'fr_FR','Guinée-Bissau','','','',' guinee bissau ','',''),(1,1860,'fr_FR','Liberia','','','',' liberia ','',''),(1,1861,'fr_FR','Burkina Faso','','','',' burkina faso ','',''),(1,1862,'fr_FR','Ghana','','','',' ghana ','',''),(1,1863,'fr_FR','Togo','','','',' togo ','',''),(1,1864,'fr_FR','Bénin','','','',' benin ','',''),(1,1865,'fr_FR','Iles du Cap-Vert','','','',' iles cap vert ','',''),(1,1866,'fr_FR','Tchad','','','',' tchad ','',''),(1,1867,'fr_FR','Niger','','','',' niger ','',''),(1,1868,'fr_FR','Nigeria','','','',' nigeria ','',''),(1,1869,'fr_FR','Cameroun','','','',' cameroun ','',''),(1,1870,'fr_FR','Centrafricaine (République)','','','',' centrafricaine republique ','',''),(1,1871,'fr_FR','Soudan','','','',' soudan ','',''),(1,1872,'fr_FR','Erythrée','','','',' erythree ','',''),(1,1873,'fr_FR','Ethiopie','','','',' ethiopie ','',''),(1,1874,'fr_FR','Somalie','','','',' somalie ','',''),(1,1875,'fr_FR','Kenya','','','',' kenya ','',''),(1,1876,'fr_FR','Tanzanie','','','',' tanzanie ','',''),(1,1877,'fr_FR','Djibouti','','','',' djibouti ','',''),(1,1878,'fr_FR','Ouganda','','','',' ouganda ','',''),(1,1879,'fr_FR','Congo','','','',' congo ','',''),(1,1880,'fr_FR','Congo (République démocratique du)','','','',' congo republique democratique ','',''),(1,1881,'fr_FR','Gabon','','','',' gabon ','',''),(1,1882,'fr_FR','Guinée équatoriale','','','',' guinee equatoriale ','',''),(1,1883,'fr_FR','Sao Tomé et Principe','','','',' sao tome principe ','',''),(1,1884,'fr_FR','Rwanda','','','',' rwanda ','',''),(1,1885,'fr_FR','Burundi','','','',' burundi ','',''),(1,1886,'fr_FR','Angola','','','',' angola ','',''),(1,1887,'fr_FR','Zambie','','','',' zambie ','',''),(1,1888,'fr_FR','Zimbabwe','','','',' zimbabwe ','',''),(1,1889,'fr_FR','Botswana','','','',' botswana ','',''),(1,1890,'fr_FR','Afrique du Sud','','','',' afrique sud ','',''),(1,1891,'fr_FR','Swaziland','','','',' swaziland ','',''),(1,1892,'fr_FR','Lesotho','','','',' lesotho ','',''),(1,1893,'fr_FR','Namibie','','','',' namibie ','',''),(1,1894,'fr_FR','Mozambique','','','',' mozambique ','',''),(1,1895,'fr_FR','Malawi','','','',' malawi ','',''),(1,1896,'fr_FR','Seychelles','','','',' seychelles ','',''),(1,1897,'fr_FR','Ile Maurice','','','',' ile maurice ','',''),(1,1898,'fr_FR','Réunion','','','',' reunion ','',''),(1,1899,'fr_FR','Madagascar','','','',' madagascar ','',''),(1,1900,'fr_FR','Comores','','','',' comores ','',''),(1,1901,'fr_FR','Mayotte','','','',' mayotte ','',''),(1,1902,'fr_FR','Bahamas','','','',' bahamas ','',''),(1,1903,'fr_FR','Cuba','','','',' cuba ','',''),(1,1904,'fr_FR','Jamaïque','','','',' jamaique ','',''),(1,1905,'fr_FR','Haïti','','','',' haiti ','',''),(1,1906,'fr_FR','Dominicaine (République)','','','',' dominicaine republique ','',''),(1,1907,'fr_FR','Porto Rico','','','',' porto rico ','',''),(1,1908,'fr_FR','Guadeloupe','','','',' guadeloupe ','',''),(1,1909,'fr_FR','Martinique','','','',' martinique ','',''),(1,1910,'fr_FR','Islande','','','',' islande ','',''),(1,1911,'fr_FR','Norvège','','','',' norvege ','',''),(1,1912,'fr_FR','Suède','','','',' suede ','',''),(1,1913,'fr_FR','Finlande','','','',' finlande ','',''),(1,1914,'fr_FR','Danemark','','','',' danemark ','',''),(1,1915,'fr_FR','Irlande','','','',' irlande ','',''),(1,1916,'fr_FR','Grande-Bretagne','','','',' grande bretagne ','',''),(1,1917,'fr_FR','France','','','',' france ','',''),(1,1918,'fr_FR','Pays-Bas','','','',' pays bas ','',''),(1,1919,'fr_FR','Belgique','','','',' belgique ','',''),(1,1920,'fr_FR','Luxembourg','','','',' luxembourg ','',''),(1,1921,'fr_FR','Suisse','','','',' suisse ','',''),(1,1922,'fr_FR','Allemagne','','','',' allemagne ','',''),(1,1923,'fr_FR','Tchèque (République)','','','',' tcheque republique ','',''),(1,1924,'fr_FR','Slovaquie','','','',' slovaquie ','',''),(1,1925,'fr_FR','Autriche','','','',' autriche ','',''),(1,1926,'fr_FR','Hongrie','','','',' hongrie ','',''),(1,1927,'fr_FR','Pologne','','','',' pologne ','',''),(1,1928,'fr_FR','Estonie','','','',' estonie ','',''),(1,1929,'fr_FR','Lettonie','','','',' lettonie ','',''),(1,1930,'fr_FR','Lituanie','','','',' lituanie ','',''),(1,1931,'fr_FR','Biélorussie','','','',' bielorussie ','',''),(1,1932,'fr_FR','Ukraine','','','',' ukraine ','',''),(1,1933,'fr_FR','Moldavie','','','',' moldavie ','',''),(1,1934,'fr_FR','Roumanie','','','',' roumanie ','',''),(1,1935,'fr_FR','Portugal','','','',' portugal ','',''),(1,1936,'fr_FR','Espagne','','','',' espagne ','',''),(1,1937,'fr_FR','Italie','','','',' italie ','',''),(1,1938,'fr_FR','Malte','','','',' malte ','',''),(1,1939,'fr_FR','Slovénie','','','',' slovenie ','',''),(1,1940,'fr_FR','Croatie','','','',' croatie ','',''),(1,1941,'fr_FR','Bosnie-Herzégovine','','','',' bosnie herzegovine ','',''),(1,1942,'fr_FR','Macédoine','','','',' macedoine ','',''),(1,1943,'fr_FR','Albanie','','','',' albanie ','',''),(1,1944,'fr_FR','Grèce','','','',' grece ','',''),(1,1945,'fr_FR','Bulgarie','','','',' bulgarie ','',''),(1,1946,'fr_FR','Serbie','','','',' serbie ','',''),(1,1947,'fr_FR','Monténégro','','','',' montenegro ','',''),(1,1948,'fr_FR','Proche-Orient','','','',' proche orient ','',''),(1,1949,'fr_FR','Jordanie','','','',' jordanie ','',''),(1,1950,'fr_FR','Irak','','','',' irak ','',''),(1,1951,'fr_FR','Arabie','','','',' arabie ','',''),(1,1952,'fr_FR','Chypre','','','',' chypre ','',''),(1,1953,'fr_FR','Egypte','','','',' egypte ','',''),(1,1954,'fr_FR','Israël','','','',' israel ','',''),(1,1955,'fr_FR','Liban','','','',' liban ','',''),(1,1956,'fr_FR','Syrie','','','',' syrie ','',''),(1,1957,'fr_FR','Palestine (Territoires autonomes de)','','','',' palestine territoires autonomes ','',''),(1,1958,'fr_FR','Turquie','','','',' turquie ','',''),(1,1959,'fr_FR','Arabie saoudite','','','',' arabie saoudite ','',''),(1,1960,'fr_FR','Bahrein','','','',' bahrein ','',''),(1,1961,'fr_FR','Emirats arabes unis','','','',' emirats arabes unis ','',''),(1,1962,'fr_FR','Koweït','','','',' koweit ','',''),(1,1963,'fr_FR','Oman','','','',' oman ','',''),(1,1964,'fr_FR','Qatar','','','',' qatar ','',''),(1,1965,'fr_FR','Yémen','','','',' yemen ','',''),(1,1966,'fr_FR','Géorgie','','','',' georgie ','',''),(1,1967,'fr_FR','Arménie','','','',' armenie ','',''),(1,1968,'fr_FR','Azerbaïdjan','','','',' azerbaidjan ','',''),(1,1969,'fr_FR','Russie (Fédération de)','','','',' russie federation ','',''),(1,1970,'fr_FR','Kazakhstan','','','',' kazakhstan ','',''),(1,1971,'fr_FR','Ouzbékistan','','','',' ouzbekistan ','',''),(1,1972,'fr_FR','Kirghizistan','','','',' kirghizistan ','',''),(1,1973,'fr_FR','Turkménistan','','','',' turkmenistan ','',''),(1,1974,'fr_FR','Tadjikistan','','','',' tadjikistan ','',''),(1,1975,'fr_FR','Iran','','','',' iran ','',''),(1,1976,'fr_FR','Afghanistan','','','',' afghanistan ','',''),(1,1977,'fr_FR','Pakistan','','','',' pakistan ','',''),(1,1978,'fr_FR','Mongolie','','','',' mongolie ','',''),(1,1979,'fr_FR','Corée du Nord','','','',' coree nord ','',''),(1,1980,'fr_FR','Corée du Sud','','','',' coree sud ','',''),(1,1981,'fr_FR','Japon','','','',' japon ','',''),(1,1982,'fr_FR','Chine','','','',' chine ','',''),(1,1983,'fr_FR','Taïwan','','','',' taiwan ','',''),(1,1984,'fr_FR','Inde','','','',' inde ','',''),(1,1985,'fr_FR','Népal','','','',' nepal ','',''),(1,1986,'fr_FR','Bhoutan','','','',' bhoutan ','',''),(1,1987,'fr_FR','Bangladesh','','','',' bangladesh ','',''),(1,1988,'fr_FR','Sri Lanka','','','',' sri lanka ','',''),(1,1989,'fr_FR','Maldives','','','',' maldives ','',''),(1,1990,'fr_FR','Birmanie','','','',' birmanie ','',''),(1,1991,'fr_FR','Brunei','','','',' brunei ','',''),(1,1992,'fr_FR','Cambodge','','','',' cambodge ','',''),(1,1993,'fr_FR','Indonésie','','','',' indonesie ','',''),(1,1994,'fr_FR','Laos','','','',' laos ','',''),(1,1995,'fr_FR','Malaisie','','','',' malaisie ','',''),(1,1996,'fr_FR','Philippines','','','',' philippines ','',''),(1,1997,'fr_FR','Singapour','','','',' singapour ','',''),(1,1998,'fr_FR','Thaïlande','','','',' thailande ','',''),(1,1999,'fr_FR','Viêt-Nam','','','',' viet nam ','',''),(1,2000,'fr_FR','Papouasie-Nouvelle-Guinée','','','',' papouasie nouvelle guinee ','',''),(1,2001,'fr_FR','Nouvelle-Calédonie','','','',' nouvelle caledonie ','',''),(1,2002,'fr_FR','Vanuatu','','','',' vanuatu ','',''),(1,2003,'fr_FR','Iles Fidji','','','',' iles fidji ','',''),(1,2004,'fr_FR','Iles Salomon','','','',' iles salomon ','',''),(1,2005,'fr_FR','Bismarck (archipel)','','','',' bismarck archipel ','',''),(1,2006,'fr_FR','Carolines','','','',' carolines ','',''),(1,2007,'fr_FR','Kiribati','','','',' kiribati ','',''),(1,2008,'fr_FR','Mariannes','','','',' mariannes ','',''),(1,2009,'fr_FR','Marshall','','','',' marshall ','',''),(1,2010,'fr_FR','Palau','','','',' palau ','',''),(1,2011,'fr_FR','Nouvelle-Zélande','','','',' nouvelle zelande ','',''),(1,2012,'fr_FR','Tonga','','','',' tonga ','',''),(1,2013,'fr_FR','Wallis-et-Futuna','','','',' wallis futuna ','',''),(1,2014,'fr_FR','Nauru','','','',' nauru ','',''),(1,2015,'fr_FR','Tuvalu','','','',' tuvalu ','',''),(1,2016,'fr_FR','Samoa occidentales','','','',' samoa occidentales ','',''),(1,2017,'fr_FR','Hawaii','','','',' hawaii ','',''),(1,2018,'fr_FR','Samoa orientales','','','',' samoa orientales ','',''),(1,2019,'fr_FR','Iles Cook','','','',' iles cook ','',''),(1,2020,'fr_FR','Polynésie française','','','',' polynesie francaise ','',''),(1,2021,'fr_FR','Ile de Pâques','','','',' ile paques ','',''),(1,2022,'fr_FR','Sciences de la vie','','','',' sciences vie ','',''),(1,2023,'fr_FR','Hommes','','','',' hommes ','',''),(1,2024,'fr_FR','Hommes','','','',' hommes ','',''),(1,2025,'fr_FR','Femmes','','','',' femmes ','',''),(1,2026,'fr_FR','Femmes','','','',' femmes ','',''),(1,2027,'fr_FR','Homosexualité','','','',' homosexualite ','',''),(1,2028,'fr_FR','Sommeil','','','',' sommeil ','',''),(1,2029,'fr_FR','Avocat','','','',' avocat ','',''),(1,2030,'fr_FR','Maladie mentale','','','',' maladie mentale ','',''),(1,2031,'fr_FR','Autisme','','','',' autisme ','',''),(1,2032,'fr_FR','Psychiatrie','','','',' psychiatrie ','',''),(1,2034,'fr_FR','Formes et tailles','','','',' formes tailles ','',''),(1,2035,'fr_FR','Littérature de Méditerranée orientale et Maghreb','','','',' litterature mediterranee orientale maghreb ','',''),(1,2036,'fr_FR','Littérature anglaise','','','',' litterature anglaise ','',''),(1,2037,'fr_FR','Angoisse','','','',' angoisse ','',''),(1,2039,'fr_FR','Littérature','','','',' litterature ','',''),(1,2040,'fr_FR','Roller','','','',' roller ','',''),(1,2043,'fr_FR','Fauteuil roulant','','','',' fauteuil roulant ','',''),(1,2044,'fr_FR','Essai et récit','','','',' essai recit ','',''),(1,2045,'fr_FR','Littérature française','','','',' litterature francaise ','',''),(1,2046,'fr_FR','Littérature étrangère (sélection)','','','',' litterature etrangere selection ','',''),(1,2047,'fr_FR','Littérature espagnole','','','',' litterature espagnole ','',''),(1,2048,'fr_FR','Littérature d\'Europe centrale','','','',' litterature europe centrale ','',''),(1,2049,'fr_FR','Littérature italienne','','','',' litterature italienne ','',''),(1,2050,'fr_FR','Littérature lusitanienne (Portugal, Brésil)','','','',' litterature lusitanienne portugal bresil ','',''),(1,2051,'fr_FR','Littérature nordique','','','',' litterature nordique ','',''),(1,2052,'fr_FR','Littérature russe','','','',' litterature russe ','',''),(1,2053,'fr_FR','Littérature d\'Afrique noire','','','',' litterature afrique noire ','',''),(1,2054,'fr_FR','Poésie','','','',' poesie ','',''),(1,2055,'fr_FR','Littérature','','','',' litterature ','',''),(1,2056,'fr_FR','Littérature','','','',' litterature ','',''),(1,2057,'fr_FR','Aventure','','','',' aventure ','',''),(1,2058,'fr_FR','Roman historique','','','',' roman historique ','',''),(1,2059,'fr_FR','Amour','','','',' amour ','',''),(1,2060,'fr_FR','Science-fiction','','','',' science fiction ','',''),(1,2061,'fr_FR','Humour','','','',' humour ','',''),(1,2062,'fr_FR','Policier','','','',' policier ','',''),(1,2063,'fr_FR','Horreur','','','',' horreur ','',''),(1,2064,'fr_FR','Fantastique','','','',' fantastique ','',''),(1,2065,'fr_FR','Vie quotidienne','','','',' vie quotidienne ','',''),(1,2066,'fr_FR','Littérature','','','',' litterature ','',''),(1,2067,'fr_FR','Littérature','','','',' litterature ','',''),(1,2068,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2069,'fr_FR','Littérature','','','',' litterature ','',''),(1,2070,'fr_FR','Littérature','','','',' litterature ','',''),(1,2071,'fr_FR','Chiffres','','','',' chiffres ','',''),(1,2072,'fr_FR','Alphabet','','','',' alphabet ','',''),(1,2074,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2075,'fr_FR','Anglais','','','',' anglais ','',''),(1,2076,'fr_FR','Café','','','',' cafe ','',''),(1,2077,'fr_FR','Littérature','','','',' litterature ','',''),(1,2078,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2079,'fr_FR','Mayas','','','',' mayas ','',''),(1,2080,'fr_FR','Incas','','','',' incas ','',''),(1,2081,'fr_FR','Aztèques','','','',' azteques ','',''),(1,2082,'fr_FR','Civilisations précolombiennes','','','',' civilisations precolombiennes ','',''),(1,2083,'fr_FR','Littérature','','','',' litterature ','',''),(1,2084,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2085,'fr_FR','Elèves','','','',' eleves ','',''),(1,2086,'fr_FR','Prison','','','',' prison ','',''),(1,2087,'fr_FR','Prisonniers','','','',' prisonniers ','',''),(1,2088,'fr_FR','Littérature','','','',' litterature ','',''),(1,2089,'fr_FR','Critique littéraire - Biographies','','','',' critique litteraire biographies ','',''),(1,2090,'fr_FR','Byron, George Gordon Noel','','','',' byron george gordon noel ','',''),(1,2092,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2093,'fr_FR','Athènes','','','',' athenes ','',''),(1,2094,'fr_FR','Epices','','','',' epices ','',''),(1,2095,'fr_FR','Essai et récit','','','',' essai recit ','',''),(1,2096,'fr_FR','Essai et récit','','','',' essai recit ','',''),(1,2097,'fr_FR','Essai et récit','','','',' essai recit ','',''),(1,2098,'fr_FR','Venise','','','',' venise ','',''),(1,2099,'fr_FR','Essai et récit','','','',' essai recit ','',''),(1,2100,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2101,'fr_FR','Aventure','','','',' aventure ','',''),(1,2102,'fr_FR','Humour','','','',' humour ','',''),(1,2103,'fr_FR','Policier','','','',' policier ','',''),(1,2104,'fr_FR','Science-fiction','','','',' science fiction ','',''),(1,2105,'fr_FR','Récit historique','','','',' recit historique ','',''),(1,2106,'fr_FR','Fantastique','','','',' fantastique ','',''),(1,2107,'fr_FR','Western','','','',' western ','',''),(1,2108,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2109,'fr_FR','Amitié','','','',' amitie ','',''),(1,2110,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2111,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2112,'fr_FR','Roman d\'aventure','','','',' roman aventure ','',''),(1,2113,'fr_FR','Théâtre','','','',' theatre ','',''),(1,2114,'fr_FR','Littérature','','','',' litterature ','',''),(1,2115,'fr_FR','Littérature','','','',' litterature ','',''),(1,2116,'fr_FR','Site web','','','',' site web ','',''),(1,2117,'fr_FR','Littérature','','','',' litterature ','',''),(1,2118,'fr_FR','Littérature','','','',' litterature ','',''),(1,2119,'fr_FR','Littérature','','','',' litterature ','',''),(1,2120,'fr_FR','Cultures et communautés','','','',' cultures communautes ','',''),(1,2121,'fr_FR','Gitans','','','',' gitans ','',''),(1,2122,'fr_FR','Littérature','','','',' litterature ','',''),(1,2123,'fr_FR','Littérature','','','',' litterature ','',''),(1,2124,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2125,'fr_FR','Aliments','','','',' aliments ','',''),(1,2126,'fr_FR','Huître','','','',' huitre ','',''),(1,2127,'fr_FR','Moule','','','',' moule ','',''),(1,2128,'fr_FR','Coquillages','','','',' coquillages ','',''),(1,2129,'fr_FR','Conchyliculture','','','',' conchyliculture ','',''),(1,2130,'fr_FR','Ostréiculture','','','',' ostreiculture ','',''),(1,2131,'fr_FR','Mytiliculture','','','',' mytiliculture ','',''),(1,2132,'fr_FR','Lingerie','','','',' lingerie ','',''),(1,2135,'fr_FR','Par sujet','','','',' par sujet ','',''),(1,2136,'fr_FR','Atlantide','','','',' atlantide ','',''),(1,2137,'fr_FR','Fête foraine','','','',' fete foraine ','',''),(1,2138,'fr_FR','Littérature','','','',' litterature ','',''),(1,2139,'fr_FR','Cheval','','','',' cheval ','',''),(1,2140,'fr_FR','Equidés','','','',' equides ','',''),(1,2141,'fr_FR','Canidés','','','',' canides ','',''),(1,2142,'fr_FR','Musée de l\'Homme','','','',' musee homme ','',''),(1,2143,'fr_FR','Histoire','','','',' histoire ','',''),(1,2144,'fr_FR','Paris','','','',' paris ','',''),(1,2145,'fr_FR','Littérature','','','',' litterature ','',''),(1,2146,'fr_FR','Surréalisme','','','',' surrealisme ','',''),(1,2147,'fr_FR','Histoire littéraire (ouvrages généraux)','','','',' histoire litteraire ouvrages generaux ','',''),(1,2148,'fr_FR','Dadaïsme','','','',' dadaisme ','',''),(1,2150,'fr_FR','Romantisme','','','',' romantisme ','',''),(1,2151,'fr_FR','Littérature','','','',' litterature ','',''),(1,2152,'fr_FR','Antiquité','','','',' antiquite ','',''),(1,2153,'fr_FR','Renaissance','','','',' renaissance ','',''),(1,2154,'fr_FR','Moyen-Age','','','',' moyen age ','',''),(1,2155,'fr_FR','XVIIème siècle','','','',' xviieme siecle ','',''),(1,2156,'fr_FR','XVIIIème siècle','','','',' xviiieme siecle ','',''),(1,2157,'fr_FR','XIXème siècle','','','',' xixeme siecle ','',''),(1,2158,'fr_FR','XXème siècle','','','',' xxeme siecle ','',''),(1,2159,'fr_FR','Géographie','','','',' geographie ','',''),(1,2160,'fr_FR','Histoire','','','',' histoire ','',''),(1,2161,'fr_FR','Aquarelle','','','',' aquarelle ','',''),(1,2162,'fr_FR','Mer','','','',' mer ','',''),(1,2163,'fr_FR','Rivière','','','',' riviere ','',''),(1,2164,'fr_FR','Araignées','','','',' araignees ','',''),(1,2165,'fr_FR','Reptiles','','','',' reptiles ','',''),(1,2166,'fr_FR','Littérature','','','',' litterature ','',''),(1,2167,'fr_FR','Paysage','','','',' paysage ','',''),(1,2168,'fr_FR','Eléments','','','',' elements ','',''),(1,2169,'fr_FR','Ciel','','','',' ciel ','',''),(1,2170,'fr_FR','Art du paysage','','','',' art paysage ','',''),(1,2171,'fr_FR','Mythes et légendes','','','',' mythes legendes ','',''),(1,2172,'fr_FR','Jardin','','','',' jardin ','',''),(1,2173,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2174,'fr_FR','Bali','','','',' bali ','',''),(1,2175,'fr_FR','Claudel, Camille','','','',' claudel camille ','',''),(1,2177,'fr_FR','Effel, Jean','','','',' effel jean ','',''),(1,2179,'fr_FR','Cubisme','','','',' cubisme ','',''),(1,2180,'fr_FR','Couleur','','','',' couleur ','',''),(1,2181,'fr_FR','Couleur','','','',' couleur ','',''),(1,2182,'fr_FR','Porte','','','',' porte ','',''),(1,2183,'fr_FR','Animaux menacés','','','',' animaux menaces ','',''),(1,2184,'fr_FR','Edifices industriels','','','',' edifices industriels ','',''),(1,2185,'fr_FR','Par sujet','','','',' par sujet ','',''),(1,2186,'fr_FR','Stern, Bert','','','',' stern bert ','',''),(1,2188,'fr_FR','Littérature','','','',' litterature ','',''),(1,2189,'fr_FR','Guides touristiques','','','',' guides touristiques ','',''),(1,2190,'fr_FR','Littérature','','','',' litterature ','',''),(1,2191,'fr_FR','Lune','','','',' lune ','',''),(1,2192,'fr_FR','Lune','','','',' lune ','',''),(1,2193,'fr_FR','Poésie','','','',' poesie ','',''),(1,2194,'fr_FR','Essais','','','',' essais ','',''),(1,2196,'fr_FR','Automobile','','','',' automobile ','',''),(1,2197,'fr_FR','Renault','','','',' renault ','',''),(1,2198,'fr_FR','4 Chevaux','','','',' 4 chevaux ','',''),(1,2200,'fr_FR','Danse','','','',' danse ','',''),(1,2201,'fr_FR','Cunningham, Merce','','','',' cunningham merce ','',''),(1,2203,'fr_FR','Jardinage','','','',' jardinage ','',''),(1,2204,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2205,'fr_FR','Géographie','','','',' geographie ','',''),(1,2206,'fr_FR','Asie','','','',' asie ','',''),(1,2207,'fr_FR','Moyen-Orient','','','',' moyen orient ','',''),(1,2208,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2209,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2210,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2211,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2212,'fr_FR','Océanie','','','',' oceanie ','',''),(1,2213,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2214,'fr_FR','Fleurs','','','',' fleurs ','',''),(1,2215,'fr_FR','Tropiques','','','',' tropiques ','',''),(1,2216,'fr_FR','Orchidée','','','',' orchidee ','',''),(1,2217,'fr_FR','Tropiques','','','',' tropiques ','',''),(1,2218,'fr_FR','Tropiques','','','',' tropiques ','',''),(1,2219,'fr_FR','Par environnement','','','',' par environnement ','',''),(1,2220,'fr_FR','Tropiques','','','',' tropiques ','',''),(1,2221,'fr_FR','Mer','','','',' mer ','',''),(1,2222,'fr_FR','Mer tropicale','','','',' mer tropicale ','',''),(1,2223,'fr_FR','Coquillage','','','',' coquillage ','',''),(1,2224,'fr_FR','Fruits','','','',' fruits ','',''),(1,2225,'fr_FR','Légumes','','','',' legumes ','',''),(1,2226,'fr_FR','XXIème siècle','','','',' xxieme siecle ','',''),(1,2227,'fr_FR','Papier','','','',' papier ','',''),(1,2228,'fr_FR','Art nouveau','','','',' art nouveau ','',''),(1,2229,'fr_FR','Mucha, Alfons','','','',' mucha alfons ','',''),(1,2231,'fr_FR','Michel-Ange','','','',' michel ange ','',''),(1,2232,'fr_FR','Michel-Ange','','','',' michel ange ','',''),(1,2233,'fr_FR','Klee, Paul','','','',' klee paul ','',''),(1,2235,'fr_FR','Afrique','','','',' afrique ','',''),(1,2236,'fr_FR','Champignons','','','',' champignons ','',''),(1,2237,'fr_FR','Maison','','','',' maison ','',''),(1,2238,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2239,'fr_FR','Hôtels particuliers','','','',' hotels particuliers ','',''),(1,2240,'fr_FR','Nouvel, Jean','','','',' nouvel jean ','',''),(1,2242,'fr_FR','Modigliani, Amedeo','','','',' modigliani amedeo ','',''),(1,2244,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2245,'fr_FR','Art brut','','','',' art brut ','',''),(1,2246,'fr_FR','Rodin, Auguste','','','',' rodin auguste ','',''),(1,2248,'fr_FR','Duchamp, Marcel','','','',' duchamp marcel ','',''),(1,2250,'fr_FR','Picasso, Pablo','','','',' picasso pablo ','',''),(1,2252,'fr_FR','Cochon d\'Inde','','','',' cochon inde ','',''),(1,2253,'fr_FR','Elevage','','','',' elevage ','',''),(1,2254,'fr_FR','Explorateurs','','','',' explorateurs ','',''),(1,2255,'fr_FR','Conquérants','','','',' conquerants ','',''),(1,2256,'fr_FR','Sociétés secrètes','','','',' societes secretes ','',''),(1,2257,'fr_FR','Gangs','','','',' gangs ','',''),(1,2258,'fr_FR','Mafia','','','',' mafia ','',''),(1,2259,'fr_FR','Fonds marins','','','',' fonds marins ','',''),(1,2260,'fr_FR','Monuments','','','',' monuments ','',''),(1,2261,'fr_FR','Esclavage','','','',' esclavage ','',''),(1,2262,'fr_FR','Voile','','','',' voile ','',''),(1,2264,'fr_FR','Equitation et sports équestres','','','',' equitation sports equestres ','',''),(1,2265,'fr_FR','France','','','',' france ','',''),(1,2266,'fr_FR','Rois','','','',' rois ','',''),(1,2267,'fr_FR','Mythologie','','','',' mythologie ','',''),(1,2268,'fr_FR','Chien','','','',' chien ','',''),(1,2269,'fr_FR','Cheval','','','',' cheval ','',''),(1,2270,'fr_FR','Poney','','','',' poney ','',''),(1,2271,'fr_FR','XXème siècle','','','',' xxeme siecle ','',''),(1,2272,'fr_FR','Personnages célèbres','','','',' personnages celebres ','',''),(1,2273,'fr_FR','Civilisation','','','',' civilisation ','',''),(1,2274,'fr_FR','Pharaons','','','',' pharaons ','',''),(1,2275,'fr_FR','Egypte','','','',' egypte ','',''),(1,2276,'fr_FR','Chien','','','',' chien ','',''),(1,2277,'fr_FR','Antiquité','','','',' antiquite ','',''),(1,2278,'fr_FR','Age de pierre','','','',' age pierre ','',''),(1,2279,'fr_FR','Football','','','',' football ','',''),(1,2280,'fr_FR','Avion','','','',' avion ','',''),(1,2281,'fr_FR','Bateau','','','',' bateau ','',''),(1,2282,'fr_FR','Train','','','',' train ','',''),(1,2283,'fr_FR','Océan','','','',' ocean ','',''),(1,2284,'fr_FR','Verbe','','','',' verbe ','',''),(1,2285,'fr_FR','Nom','','','',' nom ','',''),(1,2286,'fr_FR','Adverbe','','','',' adverbe ','',''),(1,2287,'fr_FR','Monastère','','','',' monastere ','',''),(1,2288,'fr_FR','Tibet','','','',' tibet ','',''),(1,2289,'fr_FR','Mare','','','',' mare ','',''),(1,2290,'fr_FR','Nain de jardin','','','',' nain jardin ','',''),(1,2291,'fr_FR','Pêche','','','',' peche ','',''),(1,2292,'fr_FR','Littérature','','','',' litterature ','',''),(1,2293,'fr_FR','Littérature','','','',' litterature ','',''),(1,2294,'fr_FR','Distillation','','','',' distillation ','',''),(1,2295,'fr_FR','Cadou, René Guy','','','',' cadou rene guy ','',''),(1,2297,'fr_FR','Mondialisation','','','',' mondialisation ','',''),(1,2298,'fr_FR','Lecture','','','',' lecture ','',''),(1,2299,'fr_FR','Jeux olympiques','','','',' jeux olympiques ','',''),(1,2300,'fr_FR','Balzac, Honoré de','','','',' balzac honore ','',''),(1,2302,'fr_FR','Musset, Alfred de','','','',' musset alfred ','',''),(1,2303,'fr_FR','Electroménager','','','',' electromenager ','',''),(1,2304,'fr_FR','Londres','','','',' londres ','',''),(1,2306,'fr_FR','Artisanat','','','',' artisanat ','',''),(1,2307,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2308,'fr_FR','Boissons','','','',' boissons ','',''),(1,2309,'fr_FR','Vin','','','',' vin ','',''),(1,2310,'fr_FR','Explorateurs','','','',' explorateurs ','',''),(1,2311,'fr_FR','SQL','','','',' sql ','',''),(1,2312,'fr_FR','Québec','','','',' quebec ','',''),(1,2313,'fr_FR','Méditerranée','','','',' mediterranee ','',''),(1,2314,'fr_FR','Rapport de stage','','','',' rapport stage ','',''),(1,2315,'fr_FR','Mémoire','','','',' memoire ','',''),(1,2316,'fr_FR','Analyse de texte','','','',' analyse texte ','',''),(1,2317,'fr_FR','Commentaire de texte','','','',' commentaire texte ','',''),(1,2318,'fr_FR','Traces','','','',' traces ','',''),(1,2319,'fr_FR','Littérature','','','',' litterature ','',''),(1,2320,'fr_FR','Classification','','','',' classification ','',''),(1,2321,'fr_FR','Dewey','','','',' dewey ','',''),(1,2322,'fr_FR','Dewey, Melvil','','','',' dewey melvil ','',''),(1,2324,'fr_FR','Littérature','','','',' litterature ','',''),(1,2325,'fr_FR','Littérature','','','',' litterature ','',''),(1,2326,'fr_FR','Paternité','','','',' paternite ','',''),(1,2327,'fr_FR','Imprimerie','','','',' imprimerie ','',''),(1,2328,'fr_FR','Union européenne','','','',' union europeenne ','',''),(1,2329,'fr_FR','Histoire','','','',' histoire ','',''),(1,2330,'fr_FR','Trouble obsessionnel compulsif','','','',' trouble obsessionnel compulsif ','',''),(1,2332,'fr_FR','ONU','','','',' onu ','',''),(1,2335,'fr_FR','Couple','','','',' couple ','',''),(1,2336,'fr_FR','Automobile','','','',' automobile ','',''),(1,2337,'fr_FR','Renault','','','',' renault ','',''),(1,2338,'fr_FR','Guerre','','','',' guerre ','',''),(1,2339,'fr_FR','Désert','','','',' desert ','',''),(1,2340,'fr_FR','Star','','','',' star ','',''),(1,2341,'fr_FR','Civilisations menacées','','','',' civilisations menacees ','',''),(1,2342,'fr_FR','Objet','','','',' objet ','',''),(1,2343,'fr_FR','OMC','','','',' omc ','',''),(1,2345,'fr_FR','Politique économique','','','',' politique economique ','',''),(1,2346,'fr_FR','Mondialisation culturelle','','','',' mondialisation culturelle ','',''),(1,2347,'fr_FR','Culture','','','',' culture ','',''),(1,2348,'fr_FR','Chômage','','','',' chomage ','',''),(1,2349,'fr_FR','Système monétaire international','','','',' systeme monetaire international ','',''),(1,2350,'fr_FR','Bière','','','',' biere ','',''),(1,2352,'fr_FR','Adolescents','','','',' adolescents ','',''),(1,2353,'fr_FR','Dubuffet, Jean','','','',' dubuffet jean ','',''),(1,2354,'fr_FR','Sauces','','','',' sauces ','',''),(1,2356,'fr_FR','Surréalisme','','','',' surrealisme ','',''),(1,2358,'fr_FR','Dali, Salvador','','','',' dali salvador ','',''),(1,2359,'fr_FR','Mouvements','','','',' mouvements ','',''),(1,2361,'fr_FR','Miel','','','',' miel ','',''),(1,2362,'fr_FR','Ernst, Max','','','',' ernst max ','',''),(1,2364,'fr_FR','Miro, Joan','','','',' miro joan ','',''),(1,2366,'fr_FR','Magritte, René','','','',' magritte rene ','',''),(1,2368,'fr_FR','Mouvements','','','',' mouvements ','',''),(1,2369,'fr_FR','Infusions','','','',' infusions ','',''),(1,2371,'fr_FR','Commerce international','','','',' commerce international ','',''),(1,2372,'fr_FR','Argumentation','','','',' argumentation ','',''),(1,2373,'fr_FR','Théories','','','',' theories ','',''),(1,2374,'fr_FR','Journalisme','','','',' journalisme ','',''),(1,2375,'fr_FR','Mariage','','','',' mariage ','',''),(1,2376,'fr_FR','Europe','','','',' europe ','',''),(1,2377,'fr_FR','Fromage','','','',' fromage ','',''),(1,2378,'fr_FR','Agriculteurs','','','',' agriculteurs ','',''),(1,2380,'fr_FR','Mouche','','','',' mouche ','',''),(1,2381,'fr_FR','Portrait','','','',' portrait ','',''),(1,2382,'fr_FR','Enfant','','','',' enfant ','',''),(1,2383,'fr_FR','Herbier','','','',' herbier ','',''),(1,2384,'fr_FR','France','','','',' france ','',''),(1,2385,'fr_FR','Paris','','','',' paris ','',''),(1,2386,'fr_FR','Amérique','','','',' amerique ','',''),(1,2387,'fr_FR','Tex mex','','','',' tex mex ','',''),(1,2388,'fr_FR','Jamaïque','','','',' jamaique ','',''),(1,2389,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2390,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2391,'fr_FR','Italie','','','',' italie ','',''),(1,2392,'fr_FR','Littérature','','','',' litterature ','',''),(1,2393,'fr_FR','Littérature','','','',' litterature ','',''),(1,2394,'fr_FR','Japonais','','','',' japonais ','',''),(1,2395,'fr_FR','Chinois','','','',' chinois ','',''),(1,2396,'fr_FR','Plantes aromatiques','','','',' plantes aromatiques ','',''),(1,2397,'fr_FR','Plat unique','','','',' plat unique ','',''),(1,2398,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2399,'fr_FR','Immigration','','','',' immigration ','',''),(1,2400,'fr_FR','Immigration clandestine','','','',' immigration clandestine ','',''),(1,2402,'fr_FR','Soufisme','','','',' soufisme ','',''),(1,2403,'fr_FR','Relaxation','','','',' relaxation ','',''),(1,2404,'fr_FR','Banlieue','','','',' banlieue ','',''),(1,2405,'fr_FR','Taï chi chuan','','','',' tai chi chuan ','',''),(1,2406,'fr_FR','Jouet','','','',' jouet ','',''),(1,2407,'fr_FR','Jouet','','','',' jouet ','',''),(1,2408,'fr_FR','Portugal','','','',' portugal ','',''),(1,2409,'fr_FR','Documentaires','','','',' documentaires ','',''),(1,2410,'fr_FR','Acteurs','','','',' acteurs ','',''),(1,2411,'fr_FR','Afrique','','','',' afrique ','',''),(1,2412,'fr_FR','Maroc','','','',' maroc ','',''),(1,2413,'fr_FR','Economique','','','',' economique ','',''),(1,2414,'fr_FR','Herbes aromatiques','','','',' herbes aromatiques ','',''),(1,2416,'fr_FR','Keynes, John Maynard','','','',' keynes john maynard ','',''),(1,2418,'fr_FR','Capitalisme','','','',' capitalisme ','',''),(1,2420,'fr_FR','OGM','','','',' ogm ','',''),(1,2422,'fr_FR','Rapide','','','',' rapide ','',''),(1,2423,'fr_FR','Pomme de terre','','','',' pomme terre ','',''),(1,2424,'fr_FR','Pomme','','','',' pomme ','',''),(1,2425,'fr_FR','Fête foraine','','','',' fete foraine ','',''),(1,2426,'fr_FR','Paris','','','',' paris ','',''),(1,2427,'fr_FR','Vin','','','',' vin ','',''),(1,2428,'fr_FR','Amérique','','','',' amerique ','',''),(1,2429,'fr_FR','Indiens','','','',' indiens ','',''),(1,2430,'fr_FR','Navajos','','','',' navajos ','',''),(1,2431,'fr_FR','Roman et nouvelle','','','',' roman nouvelle ','',''),(1,2432,'fr_FR','Publication Assistée par Ordinateur','','','',' publication assistee par ordinateur ','',''),(1,2438,'fr_FR','Littérature','','','',' litterature ','',''),(1,2439,'fr_FR','Littérature','','','',' litterature ','',''),(1,2440,'fr_FR','Littérature','','','',' litterature ','',''),(1,2441,'fr_FR','Littérature','','','',' litterature ','',''),(1,2442,'fr_FR','Théâtre','','','',' theatre ','',''),(1,2443,'fr_FR','Littérature','','','',' litterature ','',''),(1,2444,'fr_FR','Poésie','','','',' poesie ','',''),(1,2445,'fr_FR','Littérature','','','',' litterature ','',''),(1,2446,'fr_FR','Histoire','','','',' histoire ','',''),(1,2447,'fr_FR','Homme','','','',' homme ','',''),(1,2448,'fr_FR','Histoire','','','',' histoire ','',''),(1,2449,'fr_FR','ADN','','','',' adn ','',''),(1,2451,'fr_FR','Biographies','','','',' biographies ','',''),(1,2452,'fr_FR','Crick, Francis Harry Compton','','','',' crick francis harry compton ','',''),(1,2454,'fr_FR','Watson, James Dewey','','','',' watson james dewey ','',''),(1,2456,'fr_FR','Bibliographie','','','',' bibliographie ','',''),(1,2457,'fr_FR','Biographies','','','',' biographies ','',''),(1,2458,'fr_FR','Einstein, Albert','','','',' einstein albert ','',''),(1,2460,'fr_FR','Relativité','','','',' relativite ','',''),(1,2461,'fr_FR','Trou noir','','','',' trou noir ','',''),(1,2462,'fr_FR','Poésie','','','',' poesie ','',''),(1,2463,'fr_FR','Poésie','','','',' poesie ','',''),(1,2464,'fr_FR','Littérature','','','',' litterature ','',''),(1,2465,'fr_FR','Histoire','','','',' histoire ','',''),(1,2466,'fr_FR','Ordinateur','','','',' ordinateur ','',''),(1,2467,'fr_FR','Turing, Alan Mathison','','','',' turing alan mathison ','',''),(1,2469,'fr_FR','Oppenheimer, Julius Robert','','','',' oppenheimer julius robert ','',''),(1,2471,'fr_FR','Bombe atomique','','','',' bombe atomique ','',''),(1,2472,'fr_FR','Physique nucléaire','','','',' physique nucleaire ','',''),(1,2473,'fr_FR','Newton, Isaac','','','',' newton isaac ','',''),(1,2475,'fr_FR','Gravitation','','','',' gravitation ','',''),(1,2476,'fr_FR','Images pieuses','','','',' images pieuses ','',''),(1,2477,'fr_FR','Images','','','',' images ','',''),(1,2478,'fr_FR','Soins médicaux','','','',' soins medicaux ','',''),(1,2479,'fr_FR','Poésie','','','',' poesie ','',''),(1,2480,'fr_FR','Philatélie','','','',' philatelie ','',''),(1,2481,'fr_FR','Timbres','','','',' timbres ','',''),(1,2482,'fr_FR','Numismatie','','','',' numismatie ','',''),(1,2483,'fr_FR','Pièces','','','',' pieces ','',''),(1,2484,'fr_FR','~termes orphelins','','','',' termes orphelins ','',''),(1,2485,'fr_FR','usine','','','',' usine ','',''),(1,2486,'fr_FR','usines','','','',' usines ','',''),(1,2487,'fr_FR','Armement','','','',' armement ','',''),(1,2488,'fr_FR','Histoire politique','','','',' histoire politique ','',''),(1,2489,'fr_FR','Guerre','','','',' guerre ','',''),(1,2490,'fr_FR','Stratégie','','','',' strategie ','',''),(1,2491,'fr_FR','Retraite','','','',' retraite ','',''),(1,2492,'fr_FR','Vieillesse','','','',' vieillesse ','',''),(1,2493,'fr_FR','Echecs','','','',' echecs ','',''),(1,2494,'fr_FR','Guerres mondiales','','','',' guerres mondiales ','',''),(1,2495,'fr_FR','Jeux de stratégie','','','',' jeux strategie ','',''),(1,2496,'fr_FR','Temps libre','','','',' temps libre ','',''),(1,2497,'fr_FR','Récupération du Temps de Travail (RTT)','','','',' recuperation temps travail rtt ','',''),(1,2498,'fr_FR','Ages de la vie','','','',' ages vie ','',''),(1,2499,'fr_FR','Troisième âge','','','',' troisieme age ','',''),(1,2500,'fr_FR','Quatrième âge','','','',' quatrieme age ','',''),(1,2501,'fr_FR','Signes du vieillissement','','','',' signes vieillissement ','',''),(1,2502,'fr_FR','Signes du vieillissement','','','',' signes vieillissement ','',''),(1,2503,'fr_FR','Esthétique','','','',' esthetique ','',''),(1,2504,'fr_FR','Calvitie','','','',' calvitie ','',''),(1,2505,'fr_FR','Chirurgie esthétique','','','',' chirurgie esthetique ','',''),(1,2506,'fr_FR','Chirurgie reconstructrice','','','',' chirurgie reconstructrice ','',''),(1,2507,'fr_FR','Implants','','','',' implants ','',''),(1,2508,'fr_FR','Fabrication','','','',' fabrication ','',''),(1,2509,'fr_FR','Silicone','','','',' silicone ','',''),(1,2510,'fr_FR','Cryptage','','','',' cryptage ','',''),(1,2511,'fr_FR','poilus','','','',' poilus ','',''); 1509 /*!40000 ALTER TABLE `categories` ENABLE KEYS */; 1510 UNLOCK TABLES; 1511 1512 -- 1513 -- Table structure for table `classements` 1313 1514 -- 1314 1515 1315 1516 DROP TABLE IF EXISTS `classements`; 1316 CREATE TABLE IF NOT EXISTS `classements` ( 1317 `id_classement` int(8) unsigned NOT NULL AUTO_INCREMENT, 1517 /*!40101 SET @saved_cs_client = @@character_set_client */; 1518 /*!40101 SET character_set_client = utf8 */; 1519 CREATE TABLE `classements` ( 1520 `id_classement` int(8) unsigned NOT NULL AUTO_INCREMENT, 1318 1521 `type_classement` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'BAN', 1319 1522 `nom_classement` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1320 1523 PRIMARY KEY (`id_classement`) 1321 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4;1322 1323 -- 1324 -- Volcar la base de datos para la tabla `classements`1325 -- 1326 1327 INSERT INTO `classements` (`id_classement`, `type_classement`, `nom_classement`) VALUES 1328 (1, '', '_NON CLASSE_'), 1329 (2, 'BAN', 'Nouveautés'), 1330 (3, 'EQU', 'Nouveautés');1331 1332 -- -------------------------------------------------------- 1333 1334 -- 1335 -- Estructura de tabla para la tabla`cms`1524 ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1525 /*!40101 SET character_set_client = @saved_cs_client */; 1526 1527 -- 1528 -- Dumping data for table `classements` 1529 -- 1530 1531 LOCK TABLES `classements` WRITE; 1532 /*!40000 ALTER TABLE `classements` DISABLE KEYS */; 1533 INSERT INTO `classements` VALUES (1,'','_NON CLASSE_'),(2,'BAN','Nouveautés'),(3,'EQU','Nouveautés'); 1534 /*!40000 ALTER TABLE `classements` ENABLE KEYS */; 1535 UNLOCK TABLES; 1536 1537 -- 1538 -- Table structure for table `cms` 1336 1539 -- 1337 1540 1338 1541 DROP TABLE IF EXISTS `cms`; 1339 CREATE TABLE IF NOT EXISTS `cms` ( 1340 `id_cms` int(10) unsigned NOT NULL AUTO_INCREMENT, 1542 /*!40101 SET @saved_cs_client = @@character_set_client */; 1543 /*!40101 SET character_set_client = utf8 */; 1544 CREATE TABLE `cms` ( 1545 `id_cms` int(10) unsigned NOT NULL AUTO_INCREMENT, 1341 1546 `cms_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1342 1547 `cms_comment` text COLLATE utf8_unicode_ci NOT NULL, 1343 1548 `cms_opac_default` int(10) unsigned NOT NULL DEFAULT '0', 1549 `cms_opac_view_num` int(10) unsigned NOT NULL DEFAULT '0', 1344 1550 PRIMARY KEY (`id_cms`) 1345 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1346 1347 -- 1348 -- Volcar la base de datos para la tabla `cms` 1349 -- 1350 1351 1352 -- -------------------------------------------------------- 1353 1354 -- 1355 -- Estructura de tabla para la tabla `cms_articles` 1551 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1552 /*!40101 SET character_set_client = @saved_cs_client */; 1553 1554 -- 1555 -- Dumping data for table `cms` 1556 -- 1557 1558 LOCK TABLES `cms` WRITE; 1559 /*!40000 ALTER TABLE `cms` DISABLE KEYS */; 1560 /*!40000 ALTER TABLE `cms` ENABLE KEYS */; 1561 UNLOCK TABLES; 1562 1563 -- 1564 -- Table structure for table `cms_articles` 1356 1565 -- 1357 1566 1358 1567 DROP TABLE IF EXISTS `cms_articles`; 1359 CREATE TABLE IF NOT EXISTS `cms_articles` ( 1568 /*!40101 SET @saved_cs_client = @@character_set_client */; 1569 /*!40101 SET character_set_client = utf8 */; 1570 CREATE TABLE `cms_articles` ( 1360 1571 `id_article` int(10) unsigned NOT NULL AUTO_INCREMENT, 1361 1572 `article_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1370 1581 `article_creation_date` date DEFAULT NULL, 1371 1582 `article_order` int(10) unsigned DEFAULT '0', 1583 `article_update_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 1372 1584 PRIMARY KEY (`id_article`), 1373 1585 KEY `i_cms_article_title` (`article_title`), 1374 1586 KEY `i_cms_article_publication_state` (`article_publication_state`), 1375 1587 KEY `i_cms_article_num_parent` (`num_section`) 1376 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1377 1378 -- 1379 -- Volcar la base de datos para la tabla `cms_articles` 1380 -- 1381 1382 1383 -- -------------------------------------------------------- 1384 1385 -- 1386 -- Estructura de tabla para la tabla `cms_articles_descriptors` 1588 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1589 /*!40101 SET character_set_client = @saved_cs_client */; 1590 1591 -- 1592 -- Dumping data for table `cms_articles` 1593 -- 1594 1595 LOCK TABLES `cms_articles` WRITE; 1596 /*!40000 ALTER TABLE `cms_articles` DISABLE KEYS */; 1597 /*!40000 ALTER TABLE `cms_articles` ENABLE KEYS */; 1598 UNLOCK TABLES; 1599 1600 -- 1601 -- Table structure for table `cms_articles_descriptors` 1387 1602 -- 1388 1603 1389 1604 DROP TABLE IF EXISTS `cms_articles_descriptors`; 1390 CREATE TABLE IF NOT EXISTS `cms_articles_descriptors` ( 1605 /*!40101 SET @saved_cs_client = @@character_set_client */; 1606 /*!40101 SET character_set_client = utf8 */; 1607 CREATE TABLE `cms_articles_descriptors` ( 1391 1608 `num_article` int(11) NOT NULL DEFAULT '0', 1392 1609 `num_noeud` int(11) NOT NULL DEFAULT '0', … … 1394 1611 PRIMARY KEY (`num_article`,`num_noeud`) 1395 1612 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1396 1397 -- 1398 -- Volcar la base de datos para la tabla `cms_articles_descriptors` 1399 -- 1400 1401 1402 -- -------------------------------------------------------- 1403 1404 -- 1405 -- Estructura de tabla para la tabla `cms_build` 1613 /*!40101 SET character_set_client = @saved_cs_client */; 1614 1615 -- 1616 -- Dumping data for table `cms_articles_descriptors` 1617 -- 1618 1619 LOCK TABLES `cms_articles_descriptors` WRITE; 1620 /*!40000 ALTER TABLE `cms_articles_descriptors` DISABLE KEYS */; 1621 /*!40000 ALTER TABLE `cms_articles_descriptors` ENABLE KEYS */; 1622 UNLOCK TABLES; 1623 1624 -- 1625 -- Table structure for table `cms_build` 1406 1626 -- 1407 1627 1408 1628 DROP TABLE IF EXISTS `cms_build`; 1409 CREATE TABLE IF NOT EXISTS `cms_build` ( 1629 /*!40101 SET @saved_cs_client = @@character_set_client */; 1630 /*!40101 SET character_set_client = utf8 */; 1631 CREATE TABLE `cms_build` ( 1410 1632 `id_build` int(10) unsigned NOT NULL AUTO_INCREMENT, 1411 1633 `build_version_num` int(11) NOT NULL DEFAULT '0', … … 1423 1645 KEY `i_build_parent_build_version_num` (`build_parent`,`build_version_num`), 1424 1646 KEY `i_build_obj_build_version_num` (`build_obj`,`build_version_num`) 1425 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1426 1427 -- 1428 -- Volcar la base de datos para la tabla `cms_build` 1429 -- 1430 1431 1432 -- -------------------------------------------------------- 1433 1434 -- 1435 -- Estructura de tabla para la tabla `cms_cache_cadres` 1647 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1648 /*!40101 SET character_set_client = @saved_cs_client */; 1649 1650 -- 1651 -- Dumping data for table `cms_build` 1652 -- 1653 1654 LOCK TABLES `cms_build` WRITE; 1655 /*!40000 ALTER TABLE `cms_build` DISABLE KEYS */; 1656 /*!40000 ALTER TABLE `cms_build` ENABLE KEYS */; 1657 UNLOCK TABLES; 1658 1659 -- 1660 -- Table structure for table `cms_cache_cadres` 1436 1661 -- 1437 1662 1438 1663 DROP TABLE IF EXISTS `cms_cache_cadres`; 1664 /*!40101 SET @saved_cs_client = @@character_set_client */; 1665 /*!40101 SET character_set_client = utf8 */; 1439 1666 CREATE TABLE `cms_cache_cadres` ( 1440 `cache_cadre_hash` varchar(32) NOT NULL,1441 `cache_cadre_type_content` varchar(30) NOT NULL,1667 `cache_cadre_hash` varchar(32) COLLATE utf8_unicode_ci NOT NULL, 1668 `cache_cadre_type_content` varchar(30) COLLATE utf8_unicode_ci NOT NULL, 1442 1669 `cache_cadre_create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 1443 `cache_cadre_content` mediumtext NOT NULL,1670 `cache_cadre_content` mediumtext COLLATE utf8_unicode_ci NOT NULL, 1444 1671 PRIMARY KEY (`cache_cadre_hash`,`cache_cadre_type_content`) 1445 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1446 1447 -- 1448 -- Volcar la base de datos para la tabla `cms_cache_cadres` 1449 -- 1450 1451 1452 -- -------------------------------------------------------- 1453 1454 -- 1455 -- Estructura de tabla para la tabla `cms_cadre_content` 1672 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1673 /*!40101 SET character_set_client = @saved_cs_client */; 1674 1675 -- 1676 -- Dumping data for table `cms_cache_cadres` 1677 -- 1678 1679 LOCK TABLES `cms_cache_cadres` WRITE; 1680 /*!40000 ALTER TABLE `cms_cache_cadres` DISABLE KEYS */; 1681 /*!40000 ALTER TABLE `cms_cache_cadres` ENABLE KEYS */; 1682 UNLOCK TABLES; 1683 1684 -- 1685 -- Table structure for table `cms_cadre_content` 1456 1686 -- 1457 1687 1458 1688 DROP TABLE IF EXISTS `cms_cadre_content`; 1459 CREATE TABLE IF NOT EXISTS `cms_cadre_content` ( 1689 /*!40101 SET @saved_cs_client = @@character_set_client */; 1690 /*!40101 SET character_set_client = utf8 */; 1691 CREATE TABLE `cms_cadre_content` ( 1460 1692 `id_cadre_content` int(10) unsigned NOT NULL AUTO_INCREMENT, 1461 1693 `cadre_content_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1466 1698 `cadre_content_num_cadre_content` int(10) unsigned NOT NULL DEFAULT '0', 1467 1699 PRIMARY KEY (`id_cadre_content`) 1468 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1469 1470 -- 1471 -- Volcar la base de datos para la tabla `cms_cadre_content` 1472 -- 1473 1474 1475 -- -------------------------------------------------------- 1476 1477 1478 -- 1479 -- Estructura de tabla para la tabla `cms_cadres` 1700 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1701 /*!40101 SET character_set_client = @saved_cs_client */; 1702 1703 -- 1704 -- Dumping data for table `cms_cadre_content` 1705 -- 1706 1707 LOCK TABLES `cms_cadre_content` WRITE; 1708 /*!40000 ALTER TABLE `cms_cadre_content` DISABLE KEYS */; 1709 /*!40000 ALTER TABLE `cms_cadre_content` ENABLE KEYS */; 1710 UNLOCK TABLES; 1711 1712 -- 1713 -- Table structure for table `cms_cadres` 1480 1714 -- 1481 1715 1482 1716 DROP TABLE IF EXISTS `cms_cadres`; 1483 CREATE TABLE IF NOT EXISTS `cms_cadres` ( 1717 /*!40101 SET @saved_cs_client = @@character_set_client */; 1718 /*!40101 SET character_set_client = utf8 */; 1719 CREATE TABLE `cms_cadres` ( 1484 1720 `id_cadre` int(10) unsigned NOT NULL AUTO_INCREMENT, 1485 1721 `cadre_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1495 1731 `cadre_modcache` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'get_post_view', 1496 1732 PRIMARY KEY (`id_cadre`) 1497 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1498 1499 -- 1500 -- Volcar la base de datos para la tabla `cms_cadres` 1501 -- 1502 1503 1504 -- -------------------------------------------------------- 1505 1506 1507 -- 1508 -- Estructura de tabla para la tabla `cms_collections` 1733 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1734 /*!40101 SET character_set_client = @saved_cs_client */; 1735 1736 -- 1737 -- Dumping data for table `cms_cadres` 1738 -- 1739 1740 LOCK TABLES `cms_cadres` WRITE; 1741 /*!40000 ALTER TABLE `cms_cadres` DISABLE KEYS */; 1742 /*!40000 ALTER TABLE `cms_cadres` ENABLE KEYS */; 1743 UNLOCK TABLES; 1744 1745 -- 1746 -- Table structure for table `cms_collections` 1509 1747 -- 1510 1748 1511 1749 DROP TABLE IF EXISTS `cms_collections`; 1750 /*!40101 SET @saved_cs_client = @@character_set_client */; 1751 /*!40101 SET character_set_client = utf8 */; 1512 1752 CREATE TABLE `cms_collections` ( 1513 1753 `id_collection` int(10) unsigned NOT NULL AUTO_INCREMENT, 1514 `collection_title` varchar(255) NOT NULL DEFAULT '',1515 `collection_description` text NOT NULL,1754 `collection_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1755 `collection_description` text COLLATE utf8_unicode_ci NOT NULL, 1516 1756 `collection_num_parent` int(11) NOT NULL DEFAULT '0', 1517 1757 `collection_num_storage` int(11) NOT NULL DEFAULT '0', 1518 1758 PRIMARY KEY (`id_collection`), 1519 1759 KEY `i_cms_collection_title` (`collection_title`) 1520 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1521 1522 1523 1524 -- 1525 -- Volcar la base de datos para la tabla `cms_collections` 1526 -- 1527 1528 1529 -- 1530 -- Estructura de tabla para la tabla `cms_documents` 1760 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1761 /*!40101 SET character_set_client = @saved_cs_client */; 1762 1763 -- 1764 -- Dumping data for table `cms_collections` 1765 -- 1766 1767 LOCK TABLES `cms_collections` WRITE; 1768 /*!40000 ALTER TABLE `cms_collections` DISABLE KEYS */; 1769 /*!40000 ALTER TABLE `cms_collections` ENABLE KEYS */; 1770 UNLOCK TABLES; 1771 1772 -- 1773 -- Table structure for table `cms_documents` 1531 1774 -- 1532 1775 … … 1536 1779 CREATE TABLE `cms_documents` ( 1537 1780 `id_document` int(10) unsigned NOT NULL AUTO_INCREMENT, 1538 `document_title` varchar(255) NOT NULL DEFAULT '',1539 `document_description` text NOT NULL,1540 `document_filename` varchar(255) NOT NULL DEFAULT '',1541 `document_mimetype` varchar(100) NOT NULL DEFAULT '',1781 `document_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1782 `document_description` text COLLATE utf8_unicode_ci NOT NULL, 1783 `document_filename` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1784 `document_mimetype` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1542 1785 `document_filesize` int(11) NOT NULL DEFAULT '0', 1543 1786 `document_vignette` mediumblob NOT NULL, 1544 `document_url` text NOT NULL,1545 `document_path` varchar(255) NOT NULL DEFAULT '',1787 `document_url` text COLLATE utf8_unicode_ci NOT NULL, 1788 `document_path` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1546 1789 `document_create_date` date NOT NULL DEFAULT '0000-00-00', 1547 1790 `document_num_storage` int(11) NOT NULL DEFAULT '0', 1548 `document_type_object` varchar(255) NOT NULL DEFAULT '',1791 `document_type_object` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1549 1792 `document_num_object` int(11) NOT NULL DEFAULT '0', 1550 1793 PRIMARY KEY (`id_document`), 1551 1794 KEY `i_cms_document_title` (`document_title`) 1552 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1553 1554 1555 -- 1556 -- Volcar la base de datos para la tabla `cms_documents` 1557 -- 1558 1559 1560 -- -------------------------------------------------------- 1561 1562 -- 1563 -- Estructura de tabla para la tabla `cms_documents_links` 1795 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1796 /*!40101 SET character_set_client = @saved_cs_client */; 1797 1798 -- 1799 -- Dumping data for table `cms_documents` 1800 -- 1801 1802 LOCK TABLES `cms_documents` WRITE; 1803 /*!40000 ALTER TABLE `cms_documents` DISABLE KEYS */; 1804 /*!40000 ALTER TABLE `cms_documents` ENABLE KEYS */; 1805 UNLOCK TABLES; 1806 1807 -- 1808 -- Table structure for table `cms_documents_links` 1564 1809 -- 1565 1810 1566 1811 DROP TABLE IF EXISTS `cms_documents_links`; 1812 /*!40101 SET @saved_cs_client = @@character_set_client */; 1813 /*!40101 SET character_set_client = utf8 */; 1567 1814 CREATE TABLE `cms_documents_links` ( 1568 `document_link_type_object` varchar(255) NOT NULL DEFAULT '',1815 `document_link_type_object` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1569 1816 `document_link_num_object` int(11) NOT NULL DEFAULT '0', 1570 1817 `document_link_num_document` int(11) NOT NULL DEFAULT '0', 1571 1818 PRIMARY KEY (`document_link_type_object`,`document_link_num_object`,`document_link_num_document`) 1572 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1573 1574 -- 1575 -- Volcar la base de datos para la tabla `cms_documents_links` 1576 -- 1577 1578 1579 -- -------------------------------------------------------- 1580 1581 -- 1582 -- Estructura de tabla para la tabla `cms_editorial_custom` 1819 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1820 /*!40101 SET character_set_client = @saved_cs_client */; 1821 1822 -- 1823 -- Dumping data for table `cms_documents_links` 1824 -- 1825 1826 LOCK TABLES `cms_documents_links` WRITE; 1827 /*!40000 ALTER TABLE `cms_documents_links` DISABLE KEYS */; 1828 /*!40000 ALTER TABLE `cms_documents_links` ENABLE KEYS */; 1829 UNLOCK TABLES; 1830 1831 -- 1832 -- Table structure for table `cms_editorial_custom` 1583 1833 -- 1584 1834 1585 1835 DROP TABLE IF EXISTS `cms_editorial_custom`; 1586 CREATE TABLE IF NOT EXISTS `cms_editorial_custom` ( 1836 /*!40101 SET @saved_cs_client = @@character_set_client */; 1837 /*!40101 SET character_set_client = utf8 */; 1838 CREATE TABLE `cms_editorial_custom` ( 1587 1839 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 1588 1840 `num_type` int(10) unsigned NOT NULL DEFAULT '0', … … 1602 1854 PRIMARY KEY (`idchamp`), 1603 1855 KEY `i_num_type` (`num_type`) 1604 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1605 1606 -- 1607 -- Volcar la base de datos para la tabla `cms_editorial_custom` 1608 -- 1609 1610 1611 -- -------------------------------------------------------- 1612 1613 -- 1614 -- Estructura de tabla para la tabla `cms_editorial_custom_lists` 1856 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1857 /*!40101 SET character_set_client = @saved_cs_client */; 1858 1859 -- 1860 -- Dumping data for table `cms_editorial_custom` 1861 -- 1862 1863 LOCK TABLES `cms_editorial_custom` WRITE; 1864 /*!40000 ALTER TABLE `cms_editorial_custom` DISABLE KEYS */; 1865 /*!40000 ALTER TABLE `cms_editorial_custom` ENABLE KEYS */; 1866 UNLOCK TABLES; 1867 1868 -- 1869 -- Table structure for table `cms_editorial_custom_lists` 1615 1870 -- 1616 1871 1617 1872 DROP TABLE IF EXISTS `cms_editorial_custom_lists`; 1618 CREATE TABLE IF NOT EXISTS `cms_editorial_custom_lists` ( 1873 /*!40101 SET @saved_cs_client = @@character_set_client */; 1874 /*!40101 SET character_set_client = utf8 */; 1875 CREATE TABLE `cms_editorial_custom_lists` ( 1619 1876 `cms_editorial_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 1620 1877 `cms_editorial_custom_list_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, … … 1624 1881 KEY `editorial_champ_list_value` (`cms_editorial_custom_champ`,`cms_editorial_custom_list_value`) 1625 1882 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1626 1627 -- 1628 -- Volcar la base de datos para la tabla `cms_editorial_custom_lists` 1629 -- 1630 1631 1632 -- -------------------------------------------------------- 1633 1634 -- 1635 -- Estructura de tabla para la tabla `cms_editorial_custom_values` 1883 /*!40101 SET character_set_client = @saved_cs_client */; 1884 1885 -- 1886 -- Dumping data for table `cms_editorial_custom_lists` 1887 -- 1888 1889 LOCK TABLES `cms_editorial_custom_lists` WRITE; 1890 /*!40000 ALTER TABLE `cms_editorial_custom_lists` DISABLE KEYS */; 1891 /*!40000 ALTER TABLE `cms_editorial_custom_lists` ENABLE KEYS */; 1892 UNLOCK TABLES; 1893 1894 -- 1895 -- Table structure for table `cms_editorial_custom_values` 1636 1896 -- 1637 1897 1638 1898 DROP TABLE IF EXISTS `cms_editorial_custom_values`; 1639 CREATE TABLE IF NOT EXISTS `cms_editorial_custom_values` ( 1899 /*!40101 SET @saved_cs_client = @@character_set_client */; 1900 /*!40101 SET character_set_client = utf8 */; 1901 CREATE TABLE `cms_editorial_custom_values` ( 1640 1902 `cms_editorial_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 1641 1903 `cms_editorial_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', … … 1646 1908 `cms_editorial_custom_float` float DEFAULT NULL, 1647 1909 KEY `editorial_custom_champ` (`cms_editorial_custom_champ`), 1648 KEY `editorial_custom_origine` (`cms_editorial_custom_origine`) 1649 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1650 1651 -- 1652 -- Volcar la base de datos para la tabla `cms_editorial_custom_values` 1653 -- 1654 1655 1656 -- -------------------------------------------------------- 1657 1658 -- 1659 -- Estructura de tabla para la tabla `cms_editorial_fields_global_index` 1910 KEY `editorial_custom_origine` (`cms_editorial_custom_origine`), 1911 KEY `i_ccv_st` (`cms_editorial_custom_small_text`), 1912 KEY `i_ccv_t` (`cms_editorial_custom_text`(255)), 1913 KEY `i_ccv_i` (`cms_editorial_custom_integer`), 1914 KEY `i_ccv_d` (`cms_editorial_custom_date`), 1915 KEY `i_ccv_f` (`cms_editorial_custom_float`) 1916 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1917 /*!40101 SET character_set_client = @saved_cs_client */; 1918 1919 -- 1920 -- Dumping data for table `cms_editorial_custom_values` 1921 -- 1922 1923 LOCK TABLES `cms_editorial_custom_values` WRITE; 1924 /*!40000 ALTER TABLE `cms_editorial_custom_values` DISABLE KEYS */; 1925 /*!40000 ALTER TABLE `cms_editorial_custom_values` ENABLE KEYS */; 1926 UNLOCK TABLES; 1927 1928 -- 1929 -- Table structure for table `cms_editorial_fields_global_index` 1660 1930 -- 1661 1931 1662 1932 DROP TABLE IF EXISTS `cms_editorial_fields_global_index`; 1663 CREATE TABLE IF NOT EXISTS `cms_editorial_fields_global_index` ( 1933 /*!40101 SET @saved_cs_client = @@character_set_client */; 1934 /*!40101 SET character_set_client = utf8 */; 1935 CREATE TABLE `cms_editorial_fields_global_index` ( 1664 1936 `num_obj` int(10) unsigned NOT NULL DEFAULT '0', 1665 1937 `type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1673 1945 KEY `i_value` (`value`(300)) 1674 1946 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1675 1676 -- 1677 -- Volcar la base de datos para la tabla `cms_editorial_fields_global_index` 1678 -- 1679 1680 1681 -- -------------------------------------------------------- 1682 1683 -- 1684 -- Estructura de tabla para la tabla `cms_editorial_publications_states` 1947 /*!40101 SET character_set_client = @saved_cs_client */; 1948 1949 -- 1950 -- Dumping data for table `cms_editorial_fields_global_index` 1951 -- 1952 1953 LOCK TABLES `cms_editorial_fields_global_index` WRITE; 1954 /*!40000 ALTER TABLE `cms_editorial_fields_global_index` DISABLE KEYS */; 1955 /*!40000 ALTER TABLE `cms_editorial_fields_global_index` ENABLE KEYS */; 1956 UNLOCK TABLES; 1957 1958 -- 1959 -- Table structure for table `cms_editorial_publications_states` 1685 1960 -- 1686 1961 1687 1962 DROP TABLE IF EXISTS `cms_editorial_publications_states`; 1688 CREATE TABLE IF NOT EXISTS `cms_editorial_publications_states` ( 1963 /*!40101 SET @saved_cs_client = @@character_set_client */; 1964 /*!40101 SET character_set_client = utf8 */; 1965 CREATE TABLE `cms_editorial_publications_states` ( 1689 1966 `id_publication_state` int(10) unsigned NOT NULL AUTO_INCREMENT, 1690 1967 `editorial_publication_state_label` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1692 1969 `editorial_publication_state_auth_opac_show` int(1) NOT NULL DEFAULT '0', 1693 1970 PRIMARY KEY (`id_publication_state`) 1694 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1695 1696 -- 1697 -- Volcar la base de datos para la tabla `cms_editorial_publications_states` 1698 -- 1699 1700 1701 -- -------------------------------------------------------- 1702 1703 -- 1704 -- Estructura de tabla para la tabla `cms_editorial_types` 1971 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1972 /*!40101 SET character_set_client = @saved_cs_client */; 1973 1974 -- 1975 -- Dumping data for table `cms_editorial_publications_states` 1976 -- 1977 1978 LOCK TABLES `cms_editorial_publications_states` WRITE; 1979 /*!40000 ALTER TABLE `cms_editorial_publications_states` DISABLE KEYS */; 1980 /*!40000 ALTER TABLE `cms_editorial_publications_states` ENABLE KEYS */; 1981 UNLOCK TABLES; 1982 1983 -- 1984 -- Table structure for table `cms_editorial_types` 1705 1985 -- 1706 1986 1707 1987 DROP TABLE IF EXISTS `cms_editorial_types`; 1708 CREATE TABLE IF NOT EXISTS `cms_editorial_types` ( 1709 `id_editorial_type` int(10) unsigned NOT NULL AUTO_INCREMENT, 1988 /*!40101 SET @saved_cs_client = @@character_set_client */; 1989 /*!40101 SET character_set_client = utf8 */; 1990 CREATE TABLE `cms_editorial_types` ( 1991 `id_editorial_type` int(10) unsigned NOT NULL AUTO_INCREMENT, 1710 1992 `editorial_type_element` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1711 1993 `editorial_type_label` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1714 1996 PRIMARY KEY (`id_editorial_type`), 1715 1997 KEY `i_editorial_type_element` (`editorial_type_element`) 1716 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ; 1717 1718 -- 1719 -- Volcar la base de datos para la tabla `cms_editorial_types` 1720 -- 1721 1722 INSERT INTO `cms_editorial_types` (`id_editorial_type`, `editorial_type_element`, `editorial_type_label`, `editorial_type_comment`, `editorial_type_extension`) VALUES 1723 (1, 'article_generic', 'CP pour Article', '', ''), 1724 (2, 'section_generic', 'CP pour Rubrique', '', ''); 1725 1726 -- -------------------------------------------------------- 1727 1728 -- 1729 -- Estructura de tabla para la tabla `cms_editorial_words_global_index` 1998 ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1999 /*!40101 SET character_set_client = @saved_cs_client */; 2000 2001 -- 2002 -- Dumping data for table `cms_editorial_types` 2003 -- 2004 2005 LOCK TABLES `cms_editorial_types` WRITE; 2006 /*!40000 ALTER TABLE `cms_editorial_types` DISABLE KEYS */; 2007 INSERT INTO `cms_editorial_types` VALUES (1,'article_generic','CP pour Article','',''),(2,'section_generic','CP pour Rubrique','',''); 2008 /*!40000 ALTER TABLE `cms_editorial_types` ENABLE KEYS */; 2009 UNLOCK TABLES; 2010 2011 -- 2012 -- Table structure for table `cms_editorial_words_global_index` 1730 2013 -- 1731 2014 1732 2015 DROP TABLE IF EXISTS `cms_editorial_words_global_index`; 1733 CREATE TABLE IF NOT EXISTS `cms_editorial_words_global_index` ( 2016 /*!40101 SET @saved_cs_client = @@character_set_client */; 2017 /*!40101 SET character_set_client = utf8 */; 2018 CREATE TABLE `cms_editorial_words_global_index` ( 1734 2019 `num_obj` int(10) unsigned NOT NULL DEFAULT '0', 1735 2020 `type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1741 2026 PRIMARY KEY (`num_obj`,`type`,`code_champ`,`code_ss_champ`,`num_word`,`position`) 1742 2027 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1743 1744 -- 1745 -- Volcar la base de datos para la tabla `cms_editorial_words_global_index` 1746 -- 1747 1748 1749 -- -------------------------------------------------------- 1750 1751 -- 1752 -- Estructura de tabla para la tabla `cms_hash` 2028 /*!40101 SET character_set_client = @saved_cs_client */; 2029 2030 -- 2031 -- Dumping data for table `cms_editorial_words_global_index` 2032 -- 2033 2034 LOCK TABLES `cms_editorial_words_global_index` WRITE; 2035 /*!40000 ALTER TABLE `cms_editorial_words_global_index` DISABLE KEYS */; 2036 /*!40000 ALTER TABLE `cms_editorial_words_global_index` ENABLE KEYS */; 2037 UNLOCK TABLES; 2038 2039 -- 2040 -- Table structure for table `cms_hash` 1753 2041 -- 1754 2042 1755 2043 DROP TABLE IF EXISTS `cms_hash`; 1756 CREATE TABLE IF NOT EXISTS `cms_hash` ( 1757 `hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2044 /*!40101 SET @saved_cs_client = @@character_set_client */; 2045 /*!40101 SET character_set_client = utf8 */; 2046 CREATE TABLE `cms_hash` ( 2047 `hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1758 2048 PRIMARY KEY (`hash`) 1759 2049 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1760 1761 -- 1762 -- Volcar la base de datos para la tabla `cms_hash` 1763 -- 1764 1765 1766 -- -------------------------------------------------------- 1767 1768 -- 1769 -- Estructura de tabla para la tabla `cms_managed_modules` 2050 /*!40101 SET character_set_client = @saved_cs_client */; 2051 2052 -- 2053 -- Dumping data for table `cms_hash` 2054 -- 2055 2056 LOCK TABLES `cms_hash` WRITE; 2057 /*!40000 ALTER TABLE `cms_hash` DISABLE KEYS */; 2058 /*!40000 ALTER TABLE `cms_hash` ENABLE KEYS */; 2059 UNLOCK TABLES; 2060 2061 -- 2062 -- Table structure for table `cms_managed_modules` 1770 2063 -- 1771 2064 1772 2065 DROP TABLE IF EXISTS `cms_managed_modules`; 1773 CREATE TABLE IF NOT EXISTS `cms_managed_modules` ( 2066 /*!40101 SET @saved_cs_client = @@character_set_client */; 2067 /*!40101 SET character_set_client = utf8 */; 2068 CREATE TABLE `cms_managed_modules` ( 1774 2069 `managed_module_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1775 2070 `managed_module_box` text COLLATE utf8_unicode_ci NOT NULL, 1776 2071 PRIMARY KEY (`managed_module_name`) 1777 2072 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1778 1779 -- 1780 -- Volcar la base de datos para la tabla `cms_managed_modules` 1781 -- 1782 1783 1784 -- -------------------------------------------------------- 1785 1786 -- 1787 -- Estructura de tabla para la tabla `cms_modules_extensions_datas` 2073 /*!40101 SET character_set_client = @saved_cs_client */; 2074 2075 -- 2076 -- Dumping data for table `cms_managed_modules` 2077 -- 2078 2079 LOCK TABLES `cms_managed_modules` WRITE; 2080 /*!40000 ALTER TABLE `cms_managed_modules` DISABLE KEYS */; 2081 /*!40000 ALTER TABLE `cms_managed_modules` ENABLE KEYS */; 2082 UNLOCK TABLES; 2083 2084 -- 2085 -- Table structure for table `cms_modules_extensions_datas` 1788 2086 -- 1789 2087 1790 2088 DROP TABLE IF EXISTS `cms_modules_extensions_datas`; 1791 CREATE TABLE IF NOT EXISTS `cms_modules_extensions_datas` ( 1792 `id_extension_datas` int(10) NOT NULL AUTO_INCREMENT, 1793 `extension_datas_module` varchar(255) NOT NULL DEFAULT '', 1794 `extension_datas_type` varchar(255) NOT NULL DEFAULT '', 1795 `extension_datas_type_element` varchar(255) NOT NULL DEFAULT '', 2089 /*!40101 SET @saved_cs_client = @@character_set_client */; 2090 /*!40101 SET character_set_client = utf8 */; 2091 CREATE TABLE `cms_modules_extensions_datas` ( 2092 `id_extension_datas` int(10) NOT NULL AUTO_INCREMENT, 2093 `extension_datas_module` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2094 `extension_datas_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2095 `extension_datas_type_element` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1796 2096 `extension_datas_num_element` int(10) NOT NULL DEFAULT '0', 1797 2097 `extension_datas_datas` blob, 1798 2098 PRIMARY KEY (`id_extension_datas`) 1799 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 1800 1801 -- 1802 -- Volcar la base de datos para la tabla `cms_modules_extensions_datas` 1803 -- 1804 1805 1806 -- -------------------------------------------------------- 1807 1808 -- 1809 -- Estructura de tabla para la tabla `cms_pages` 2099 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2100 /*!40101 SET character_set_client = @saved_cs_client */; 2101 2102 -- 2103 -- Dumping data for table `cms_modules_extensions_datas` 2104 -- 2105 2106 LOCK TABLES `cms_modules_extensions_datas` WRITE; 2107 /*!40000 ALTER TABLE `cms_modules_extensions_datas` DISABLE KEYS */; 2108 /*!40000 ALTER TABLE `cms_modules_extensions_datas` ENABLE KEYS */; 2109 UNLOCK TABLES; 2110 2111 -- 2112 -- Table structure for table `cms_pages` 1810 2113 -- 1811 2114 1812 2115 DROP TABLE IF EXISTS `cms_pages`; 1813 CREATE TABLE IF NOT EXISTS `cms_pages` ( 1814 `id_page` int(10) unsigned NOT NULL AUTO_INCREMENT, 2116 /*!40101 SET @saved_cs_client = @@character_set_client */; 2117 /*!40101 SET character_set_client = utf8 */; 2118 CREATE TABLE `cms_pages` ( 2119 `id_page` int(10) unsigned NOT NULL AUTO_INCREMENT, 1815 2120 `page_hash` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 1816 2121 `page_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 1818 2123 `page_classement` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1819 2124 PRIMARY KEY (`id_page`) 1820 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1821 1822 -- 1823 -- Volcar la base de datos para la tabla `cms_pages` 1824 -- 1825 1826 1827 -- -------------------------------------------------------- 1828 1829 -- 1830 -- Estructura de tabla para la tabla `cms_pages_env` 2125 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2126 /*!40101 SET character_set_client = @saved_cs_client */; 2127 2128 -- 2129 -- Dumping data for table `cms_pages` 2130 -- 2131 2132 LOCK TABLES `cms_pages` WRITE; 2133 /*!40000 ALTER TABLE `cms_pages` DISABLE KEYS */; 2134 /*!40000 ALTER TABLE `cms_pages` ENABLE KEYS */; 2135 UNLOCK TABLES; 2136 2137 -- 2138 -- Table structure for table `cms_pages_env` 1831 2139 -- 1832 2140 1833 2141 DROP TABLE IF EXISTS `cms_pages_env`; 1834 CREATE TABLE IF NOT EXISTS `cms_pages_env` ( 1835 `page_env_num_page` int(10) unsigned NOT NULL AUTO_INCREMENT, 2142 /*!40101 SET @saved_cs_client = @@character_set_client */; 2143 /*!40101 SET character_set_client = utf8 */; 2144 CREATE TABLE `cms_pages_env` ( 2145 `page_env_num_page` int(10) unsigned NOT NULL AUTO_INCREMENT, 1836 2146 `page_env_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1837 2147 `page_env_id_selector` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1838 2148 PRIMARY KEY (`page_env_num_page`) 1839 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1840 1841 -- 1842 -- Volcar la base de datos para la tabla `cms_pages_env` 1843 -- 1844 1845 1846 -- -------------------------------------------------------- 1847 1848 -- 1849 -- Estructura de tabla para la tabla `cms_sections` 2149 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2150 /*!40101 SET character_set_client = @saved_cs_client */; 2151 2152 -- 2153 -- Dumping data for table `cms_pages_env` 2154 -- 2155 2156 LOCK TABLES `cms_pages_env` WRITE; 2157 /*!40000 ALTER TABLE `cms_pages_env` DISABLE KEYS */; 2158 /*!40000 ALTER TABLE `cms_pages_env` ENABLE KEYS */; 2159 UNLOCK TABLES; 2160 2161 -- 2162 -- Table structure for table `cms_sections` 1850 2163 -- 1851 2164 1852 2165 DROP TABLE IF EXISTS `cms_sections`; 1853 CREATE TABLE IF NOT EXISTS `cms_sections` ( 1854 `id_section` int(10) unsigned NOT NULL AUTO_INCREMENT, 2166 /*!40101 SET @saved_cs_client = @@character_set_client */; 2167 /*!40101 SET character_set_client = utf8 */; 2168 CREATE TABLE `cms_sections` ( 2169 `id_section` int(10) unsigned NOT NULL AUTO_INCREMENT, 1855 2170 `section_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1856 2171 `section_resume` mediumtext COLLATE utf8_unicode_ci NOT NULL, … … 1863 2178 `section_creation_date` date DEFAULT NULL, 1864 2179 `section_order` int(10) unsigned DEFAULT '0', 2180 `section_update_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 1865 2181 PRIMARY KEY (`id_section`), 1866 2182 KEY `i_cms_section_title` (`section_title`), 1867 2183 KEY `i_cms_section_publication_state` (`section_publication_state`), 1868 2184 KEY `i_cms_section_num_parent` (`section_num_parent`) 1869 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1870 1871 -- 1872 -- Volcar la base de datos para la tabla `cms_sections` 1873 -- 1874 1875 1876 -- -------------------------------------------------------- 1877 1878 -- 1879 -- Estructura de tabla para la tabla `cms_sections_descriptors` 2185 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2186 /*!40101 SET character_set_client = @saved_cs_client */; 2187 2188 -- 2189 -- Dumping data for table `cms_sections` 2190 -- 2191 2192 LOCK TABLES `cms_sections` WRITE; 2193 /*!40000 ALTER TABLE `cms_sections` DISABLE KEYS */; 2194 /*!40000 ALTER TABLE `cms_sections` ENABLE KEYS */; 2195 UNLOCK TABLES; 2196 2197 -- 2198 -- Table structure for table `cms_sections_descriptors` 1880 2199 -- 1881 2200 1882 2201 DROP TABLE IF EXISTS `cms_sections_descriptors`; 1883 CREATE TABLE IF NOT EXISTS `cms_sections_descriptors` ( 2202 /*!40101 SET @saved_cs_client = @@character_set_client */; 2203 /*!40101 SET character_set_client = utf8 */; 2204 CREATE TABLE `cms_sections_descriptors` ( 1884 2205 `num_section` int(11) NOT NULL DEFAULT '0', 1885 2206 `num_noeud` int(11) NOT NULL DEFAULT '0', … … 1887 2208 PRIMARY KEY (`num_section`,`num_noeud`) 1888 2209 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 1889 1890 -- 1891 -- Volcar la base de datos para la tabla `cms_sections_descriptors` 1892 -- 1893 1894 1895 -- -------------------------------------------------------- 1896 1897 -- 1898 -- Estructura de tabla para la tabla `cms_vars` 2210 /*!40101 SET character_set_client = @saved_cs_client */; 2211 2212 -- 2213 -- Dumping data for table `cms_sections_descriptors` 2214 -- 2215 2216 LOCK TABLES `cms_sections_descriptors` WRITE; 2217 /*!40000 ALTER TABLE `cms_sections_descriptors` DISABLE KEYS */; 2218 /*!40000 ALTER TABLE `cms_sections_descriptors` ENABLE KEYS */; 2219 UNLOCK TABLES; 2220 2221 -- 2222 -- Table structure for table `cms_vars` 1899 2223 -- 1900 2224 1901 2225 DROP TABLE IF EXISTS `cms_vars`; 1902 CREATE TABLE IF NOT EXISTS `cms_vars` ( 2226 /*!40101 SET @saved_cs_client = @@character_set_client */; 2227 /*!40101 SET character_set_client = utf8 */; 2228 CREATE TABLE `cms_vars` ( 1903 2229 `id_var` int(10) unsigned NOT NULL AUTO_INCREMENT, 1904 2230 `var_num_page` int(10) unsigned NOT NULL DEFAULT '0', … … 1906 2232 `var_comment` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 1907 2233 PRIMARY KEY (`id_var`) 1908 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1909 1910 -- 1911 -- Volcar la base de datos para la tabla `cms_vars` 1912 -- 1913 1914 1915 -- -------------------------------------------------------- 1916 1917 -- 1918 -- Estructura de tabla para la tabla `cms_version` 2234 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2235 /*!40101 SET character_set_client = @saved_cs_client */; 2236 2237 -- 2238 -- Dumping data for table `cms_vars` 2239 -- 2240 2241 LOCK TABLES `cms_vars` WRITE; 2242 /*!40000 ALTER TABLE `cms_vars` DISABLE KEYS */; 2243 /*!40000 ALTER TABLE `cms_vars` ENABLE KEYS */; 2244 UNLOCK TABLES; 2245 2246 -- 2247 -- Table structure for table `cms_version` 1919 2248 -- 1920 2249 1921 2250 DROP TABLE IF EXISTS `cms_version`; 1922 CREATE TABLE IF NOT EXISTS `cms_version` ( 2251 /*!40101 SET @saved_cs_client = @@character_set_client */; 2252 /*!40101 SET character_set_client = utf8 */; 2253 CREATE TABLE `cms_version` ( 1923 2254 `id_version` int(10) unsigned NOT NULL AUTO_INCREMENT, 1924 2255 `version_cms_num` int(10) unsigned NOT NULL DEFAULT '0', … … 1928 2259 `version_user` int(10) unsigned NOT NULL DEFAULT '0', 1929 2260 PRIMARY KEY (`id_version`) 1930 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 1931 1932 -- 1933 -- Volcar la base de datos para la tabla `cms_version` 1934 -- 1935 1936 1937 -- -------------------------------------------------------- 1938 1939 -- 1940 -- Estructura de tabla para la tabla `collection_custom` 2261 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2262 /*!40101 SET character_set_client = @saved_cs_client */; 2263 2264 -- 2265 -- Dumping data for table `cms_version` 2266 -- 2267 2268 LOCK TABLES `cms_version` WRITE; 2269 /*!40000 ALTER TABLE `cms_version` DISABLE KEYS */; 2270 /*!40000 ALTER TABLE `cms_version` ENABLE KEYS */; 2271 UNLOCK TABLES; 2272 2273 -- 2274 -- Table structure for table `collection_custom` 1941 2275 -- 1942 2276 1943 2277 DROP TABLE IF EXISTS `collection_custom`; 2278 /*!40101 SET @saved_cs_client = @@character_set_client */; 2279 /*!40101 SET character_set_client = utf8 */; 1944 2280 CREATE TABLE `collection_custom` ( 1945 2281 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 1946 2282 `num_type` int(10) unsigned NOT NULL DEFAULT '0', 1947 `name` varchar(255) NOT NULL DEFAULT '',1948 `titre` varchar(255) DEFAULT NULL,1949 `type` varchar(10) NOT NULL DEFAULT 'text',1950 `datatype` varchar(10) NOT NULL DEFAULT '',1951 `options` text ,2283 `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2284 `titre` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2285 `type` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'text', 2286 `datatype` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2287 `options` text COLLATE utf8_unicode_ci, 1952 2288 `multiple` int(11) NOT NULL DEFAULT '0', 1953 2289 `obligatoire` int(11) NOT NULL DEFAULT '0', … … 1959 2295 `opac_sort` int(11) NOT NULL DEFAULT '0', 1960 2296 PRIMARY KEY (`idchamp`) 1961 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1962 1963 -- 1964 -- Volcar la base de datos para la tabla `collection_custom` 1965 -- 1966 1967 1968 -- -------------------------------------------------------- 1969 1970 -- 1971 -- Estructura de tabla para la tabla `collection_custom_lists` 2297 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2298 /*!40101 SET character_set_client = @saved_cs_client */; 2299 2300 -- 2301 -- Dumping data for table `collection_custom` 2302 -- 2303 2304 LOCK TABLES `collection_custom` WRITE; 2305 /*!40000 ALTER TABLE `collection_custom` DISABLE KEYS */; 2306 /*!40000 ALTER TABLE `collection_custom` ENABLE KEYS */; 2307 UNLOCK TABLES; 2308 2309 -- 2310 -- Table structure for table `collection_custom_lists` 1972 2311 -- 1973 2312 1974 2313 DROP TABLE IF EXISTS `collection_custom_lists`; 1975 2314 /*!40101 SET @saved_cs_client = @@character_set_client */; 2315 /*!40101 SET character_set_client = utf8 */; 1976 2316 CREATE TABLE `collection_custom_lists` ( 1977 2317 `collection_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 1978 `collection_custom_list_value` varchar(255) DEFAULT NULL,1979 `collection_custom_list_lib` varchar(255) DEFAULT NULL,2318 `collection_custom_list_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2319 `collection_custom_list_lib` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 1980 2320 `ordre` int(11) DEFAULT NULL, 1981 2321 KEY `editorial_custom_champ` (`collection_custom_champ`), 1982 2322 KEY `editorial_champ_list_value` (`collection_custom_champ`,`collection_custom_list_value`) 1983 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1984 1985 1986 -- 1987 -- Volcar la base de datos para la tabla `collection_custom_lists` 1988 -- 1989 1990 1991 -- -------------------------------------------------------- 1992 1993 -- 1994 -- Estructura de tabla para la tabl `collection_custom_values` 2323 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2324 /*!40101 SET character_set_client = @saved_cs_client */; 2325 2326 -- 2327 -- Dumping data for table `collection_custom_lists` 2328 -- 2329 2330 LOCK TABLES `collection_custom_lists` WRITE; 2331 /*!40000 ALTER TABLE `collection_custom_lists` DISABLE KEYS */; 2332 /*!40000 ALTER TABLE `collection_custom_lists` ENABLE KEYS */; 2333 UNLOCK TABLES; 2334 2335 -- 2336 -- Table structure for table `collection_custom_values` 1995 2337 -- 1996 2338 1997 2339 DROP TABLE IF EXISTS `collection_custom_values`; 2340 /*!40101 SET @saved_cs_client = @@character_set_client */; 2341 /*!40101 SET character_set_client = utf8 */; 1998 2342 CREATE TABLE `collection_custom_values` ( 1999 2343 `collection_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 2000 2344 `collection_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', 2001 `collection_custom_small_text` varchar(255) DEFAULT NULL,2002 `collection_custom_text` text ,2345 `collection_custom_small_text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2346 `collection_custom_text` text COLLATE utf8_unicode_ci, 2003 2347 `collection_custom_integer` int(11) DEFAULT NULL, 2004 2348 `collection_custom_date` date DEFAULT NULL, 2005 2349 `collection_custom_float` float DEFAULT NULL, 2006 2350 KEY `editorial_custom_champ` (`collection_custom_champ`), 2007 KEY `editorial_custom_origine` (`collection_custom_origine`) 2008 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 2009 2010 2011 -- 2012 -- Volcar la base de datos para la tabla `collection_custom_values` 2013 -- 2014 2015 2016 -- -------------------------------------------------------- 2017 2018 2019 -- 2020 -- Estructura de tabla para la tabla `collections` 2351 KEY `editorial_custom_origine` (`collection_custom_origine`), 2352 KEY `i_ccv_st` (`collection_custom_small_text`), 2353 KEY `i_ccv_t` (`collection_custom_text`(255)), 2354 KEY `i_ccv_i` (`collection_custom_integer`), 2355 KEY `i_ccv_d` (`collection_custom_date`), 2356 KEY `i_ccv_f` (`collection_custom_float`) 2357 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2358 /*!40101 SET character_set_client = @saved_cs_client */; 2359 2360 -- 2361 -- Dumping data for table `collection_custom_values` 2362 -- 2363 2364 LOCK TABLES `collection_custom_values` WRITE; 2365 /*!40000 ALTER TABLE `collection_custom_values` DISABLE KEYS */; 2366 /*!40000 ALTER TABLE `collection_custom_values` ENABLE KEYS */; 2367 UNLOCK TABLES; 2368 2369 -- 2370 -- Table structure for table `collections` 2021 2371 -- 2022 2372 2023 2373 DROP TABLE IF EXISTS `collections`; 2024 CREATE TABLE IF NOT EXISTS `collections` ( 2374 /*!40101 SET @saved_cs_client = @@character_set_client */; 2375 /*!40101 SET character_set_client = utf8 */; 2376 CREATE TABLE `collections` ( 2025 2377 `collection_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, 2026 2378 `collection_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2034 2386 KEY `collection_name` (`collection_name`), 2035 2387 KEY `collection_parent` (`collection_parent`) 2036 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2037 2038 -- 2039 -- Volcar la base de datos para la tabla `collections` 2040 -- 2041 2042 2043 -- -------------------------------------------------------- 2044 2045 -- 2046 -- Estructura de tabla para la tabla `collections_state` 2388 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2389 /*!40101 SET character_set_client = @saved_cs_client */; 2390 2391 -- 2392 -- Dumping data for table `collections` 2393 -- 2394 2395 LOCK TABLES `collections` WRITE; 2396 /*!40000 ALTER TABLE `collections` DISABLE KEYS */; 2397 /*!40000 ALTER TABLE `collections` ENABLE KEYS */; 2398 UNLOCK TABLES; 2399 2400 -- 2401 -- Table structure for table `collections_state` 2047 2402 -- 2048 2403 2049 2404 DROP TABLE IF EXISTS `collections_state`; 2050 CREATE TABLE IF NOT EXISTS `collections_state` ( 2051 `collstate_id` int(8) NOT NULL AUTO_INCREMENT, 2405 /*!40101 SET @saved_cs_client = @@character_set_client */; 2406 /*!40101 SET character_set_client = utf8 */; 2407 CREATE TABLE `collections_state` ( 2408 `collstate_id` int(8) NOT NULL AUTO_INCREMENT, 2052 2409 `id_serial` mediumint(8) unsigned NOT NULL DEFAULT '0', 2053 2410 `location_id` smallint(5) unsigned NOT NULL DEFAULT '0', … … 2070 2427 KEY `i_colls_serial` (`id_serial`), 2071 2428 KEY `i_colls_loc` (`location_id`) 2072 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2073 2074 -- 2075 -- Volcar la base de datos para la tabla `collections_state` 2076 -- 2077 2078 2079 -- -------------------------------------------------------- 2080 2081 -- 2082 -- Estructura de tabla para la tabla `collstate_custom` 2429 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2430 /*!40101 SET character_set_client = @saved_cs_client */; 2431 2432 -- 2433 -- Dumping data for table `collections_state` 2434 -- 2435 2436 LOCK TABLES `collections_state` WRITE; 2437 /*!40000 ALTER TABLE `collections_state` DISABLE KEYS */; 2438 /*!40000 ALTER TABLE `collections_state` ENABLE KEYS */; 2439 UNLOCK TABLES; 2440 2441 -- 2442 -- Table structure for table `collstate_custom` 2083 2443 -- 2084 2444 2085 2445 DROP TABLE IF EXISTS `collstate_custom`; 2086 CREATE TABLE IF NOT EXISTS `collstate_custom` ( 2087 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 2446 /*!40101 SET @saved_cs_client = @@character_set_client */; 2447 /*!40101 SET character_set_client = utf8 */; 2448 CREATE TABLE `collstate_custom` ( 2449 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 2088 2450 `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2089 2451 `titre` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2100 2462 `opac_sort` int(11) NOT NULL DEFAULT '0', 2101 2463 PRIMARY KEY (`idchamp`) 2102 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2103 2104 -- 2105 -- Volcar la base de datos para la tabla `collstate_custom` 2106 -- 2107 2108 2109 -- -------------------------------------------------------- 2110 2111 -- 2112 -- Estructura de tabla para la tabla `collstate_custom_lists` 2464 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2465 /*!40101 SET character_set_client = @saved_cs_client */; 2466 2467 -- 2468 -- Dumping data for table `collstate_custom` 2469 -- 2470 2471 LOCK TABLES `collstate_custom` WRITE; 2472 /*!40000 ALTER TABLE `collstate_custom` DISABLE KEYS */; 2473 /*!40000 ALTER TABLE `collstate_custom` ENABLE KEYS */; 2474 UNLOCK TABLES; 2475 2476 -- 2477 -- Table structure for table `collstate_custom_lists` 2113 2478 -- 2114 2479 2115 2480 DROP TABLE IF EXISTS `collstate_custom_lists`; 2116 CREATE TABLE IF NOT EXISTS `collstate_custom_lists` ( 2481 /*!40101 SET @saved_cs_client = @@character_set_client */; 2482 /*!40101 SET character_set_client = utf8 */; 2483 CREATE TABLE `collstate_custom_lists` ( 2117 2484 `collstate_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 2118 2485 `collstate_custom_list_value` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2122 2489 KEY `i_ccl_lv` (`collstate_custom_list_value`) 2123 2490 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2124 2125 -- 2126 -- Volcar la base de datos para la tabla `collstate_custom_lists` 2127 -- 2128 2129 2130 -- -------------------------------------------------------- 2131 2132 -- 2133 -- Estructura de tabla para la tabla `collstate_custom_values` 2491 /*!40101 SET character_set_client = @saved_cs_client */; 2492 2493 -- 2494 -- Dumping data for table `collstate_custom_lists` 2495 -- 2496 2497 LOCK TABLES `collstate_custom_lists` WRITE; 2498 /*!40000 ALTER TABLE `collstate_custom_lists` DISABLE KEYS */; 2499 /*!40000 ALTER TABLE `collstate_custom_lists` ENABLE KEYS */; 2500 UNLOCK TABLES; 2501 2502 -- 2503 -- Table structure for table `collstate_custom_values` 2134 2504 -- 2135 2505 2136 2506 DROP TABLE IF EXISTS `collstate_custom_values`; 2137 CREATE TABLE IF NOT EXISTS `collstate_custom_values` ( 2138 `collstate_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 2507 /*!40101 SET @saved_cs_client = @@character_set_client */; 2508 /*!40101 SET character_set_client = utf8 */; 2509 CREATE TABLE `collstate_custom_values` ( 2510 `collstate_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 2139 2511 `collstate_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', 2140 2512 `collstate_custom_small_text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, … … 2151 2523 KEY `i_ccv_f` (`collstate_custom_float`) 2152 2524 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2153 2154 -- 2155 -- Volcar la base de datos para la tabla `collstate_custom_values` 2156 -- 2157 2158 2159 -- -------------------------------------------------------- 2160 2161 -- 2162 -- Estructura de tabla para la tabla `comptes` 2525 /*!40101 SET character_set_client = @saved_cs_client */; 2526 2527 -- 2528 -- Dumping data for table `collstate_custom_values` 2529 -- 2530 2531 LOCK TABLES `collstate_custom_values` WRITE; 2532 /*!40000 ALTER TABLE `collstate_custom_values` DISABLE KEYS */; 2533 /*!40000 ALTER TABLE `collstate_custom_values` ENABLE KEYS */; 2534 UNLOCK TABLES; 2535 2536 -- 2537 -- Table structure for table `comptes` 2163 2538 -- 2164 2539 2165 2540 DROP TABLE IF EXISTS `comptes`; 2166 CREATE TABLE IF NOT EXISTS `comptes` ( 2541 /*!40101 SET @saved_cs_client = @@character_set_client */; 2542 /*!40101 SET character_set_client = utf8 */; 2543 CREATE TABLE `comptes` ( 2167 2544 `id_compte` int(8) unsigned NOT NULL AUTO_INCREMENT, 2168 2545 `libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2174 2551 PRIMARY KEY (`id_compte`), 2175 2552 KEY `i_cpt_proprio_id` (`proprio_id`) 2176 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2177 2178 -- 2179 -- Volcar la base de datos para la tabla `comptes` 2180 -- 2181 2182 2183 -- -------------------------------------------------------- 2184 2185 -- 2186 -- Estructura de tabla para la tabla `connectors` 2553 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2554 /*!40101 SET character_set_client = @saved_cs_client */; 2555 2556 -- 2557 -- Dumping data for table `comptes` 2558 -- 2559 2560 LOCK TABLES `comptes` WRITE; 2561 /*!40000 ALTER TABLE `comptes` DISABLE KEYS */; 2562 /*!40000 ALTER TABLE `comptes` ENABLE KEYS */; 2563 UNLOCK TABLES; 2564 2565 -- 2566 -- Table structure for table `connectors` 2187 2567 -- 2188 2568 2189 2569 DROP TABLE IF EXISTS `connectors`; 2190 CREATE TABLE IF NOT EXISTS `connectors` ( 2570 /*!40101 SET @saved_cs_client = @@character_set_client */; 2571 /*!40101 SET character_set_client = utf8 */; 2572 CREATE TABLE `connectors` ( 2191 2573 `connector_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2192 2574 `parameters` text COLLATE utf8_unicode_ci NOT NULL, … … 2197 2579 PRIMARY KEY (`connector_id`) 2198 2580 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2199 2200 -- 2201 -- Volcar la base de datos para la tabla `connectors` 2202 -- 2203 2204 2205 -- -------------------------------------------------------- 2206 2207 -- 2208 -- Estructura de tabla para la tabla `connectors_categ` 2581 /*!40101 SET character_set_client = @saved_cs_client */; 2582 2583 -- 2584 -- Dumping data for table `connectors` 2585 -- 2586 2587 LOCK TABLES `connectors` WRITE; 2588 /*!40000 ALTER TABLE `connectors` DISABLE KEYS */; 2589 /*!40000 ALTER TABLE `connectors` ENABLE KEYS */; 2590 UNLOCK TABLES; 2591 2592 -- 2593 -- Table structure for table `connectors_categ` 2209 2594 -- 2210 2595 2211 2596 DROP TABLE IF EXISTS `connectors_categ`; 2212 CREATE TABLE IF NOT EXISTS `connectors_categ` ( 2597 /*!40101 SET @saved_cs_client = @@character_set_client */; 2598 /*!40101 SET character_set_client = utf8 */; 2599 CREATE TABLE `connectors_categ` ( 2213 2600 `connectors_categ_id` smallint(5) NOT NULL AUTO_INCREMENT, 2214 2601 `connectors_categ_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2215 2602 `opac_expanded` smallint(6) NOT NULL DEFAULT '0', 2216 2603 PRIMARY KEY (`connectors_categ_id`) 2217 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2218 2219 -- 2220 -- Volcar la base de datos para la tabla `connectors_categ` 2221 -- 2222 2223 2224 -- -------------------------------------------------------- 2225 2226 -- 2227 -- Estructura de tabla para la tabla `connectors_categ_sources` 2604 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2605 /*!40101 SET character_set_client = @saved_cs_client */; 2606 2607 -- 2608 -- Dumping data for table `connectors_categ` 2609 -- 2610 2611 LOCK TABLES `connectors_categ` WRITE; 2612 /*!40000 ALTER TABLE `connectors_categ` DISABLE KEYS */; 2613 /*!40000 ALTER TABLE `connectors_categ` ENABLE KEYS */; 2614 UNLOCK TABLES; 2615 2616 -- 2617 -- Table structure for table `connectors_categ_sources` 2228 2618 -- 2229 2619 2230 2620 DROP TABLE IF EXISTS `connectors_categ_sources`; 2231 CREATE TABLE IF NOT EXISTS `connectors_categ_sources` ( 2621 /*!40101 SET @saved_cs_client = @@character_set_client */; 2622 /*!40101 SET character_set_client = utf8 */; 2623 CREATE TABLE `connectors_categ_sources` ( 2232 2624 `num_categ` smallint(6) NOT NULL DEFAULT '0', 2233 2625 `num_source` smallint(6) NOT NULL DEFAULT '0', … … 2235 2627 KEY `i_num_source` (`num_source`) 2236 2628 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2237 2238 -- 2239 -- Volcar la base de datos para la tabla `connectors_categ_sources` 2240 -- 2241 2242 2243 -- -------------------------------------------------------- 2244 2245 -- 2246 -- Estructura de tabla para la tabla `connectors_out` 2629 /*!40101 SET character_set_client = @saved_cs_client */; 2630 2631 -- 2632 -- Dumping data for table `connectors_categ_sources` 2633 -- 2634 2635 LOCK TABLES `connectors_categ_sources` WRITE; 2636 /*!40000 ALTER TABLE `connectors_categ_sources` DISABLE KEYS */; 2637 /*!40000 ALTER TABLE `connectors_categ_sources` ENABLE KEYS */; 2638 UNLOCK TABLES; 2639 2640 -- 2641 -- Table structure for table `connectors_out` 2247 2642 -- 2248 2643 2249 2644 DROP TABLE IF EXISTS `connectors_out`; 2250 CREATE TABLE IF NOT EXISTS `connectors_out` ( 2645 /*!40101 SET @saved_cs_client = @@character_set_client */; 2646 /*!40101 SET character_set_client = utf8 */; 2647 CREATE TABLE `connectors_out` ( 2251 2648 `connectors_out_id` int(11) NOT NULL AUTO_INCREMENT, 2252 2649 `connectors_out_config` longblob NOT NULL, 2253 2650 PRIMARY KEY (`connectors_out_id`) 2254 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2255 2256 -- 2257 -- Volcar la base de datos para la tabla `connectors_out` 2258 -- 2259 2260 2261 -- -------------------------------------------------------- 2262 2263 -- 2264 -- Estructura de tabla para la tabla `connectors_out_oai_tokens` 2651 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2652 /*!40101 SET character_set_client = @saved_cs_client */; 2653 2654 -- 2655 -- Dumping data for table `connectors_out` 2656 -- 2657 2658 LOCK TABLES `connectors_out` WRITE; 2659 /*!40000 ALTER TABLE `connectors_out` DISABLE KEYS */; 2660 /*!40000 ALTER TABLE `connectors_out` ENABLE KEYS */; 2661 UNLOCK TABLES; 2662 2663 -- 2664 -- Table structure for table `connectors_out_oai_deleted_records` 2665 -- 2666 2667 DROP TABLE IF EXISTS `connectors_out_oai_deleted_records`; 2668 /*!40101 SET @saved_cs_client = @@character_set_client */; 2669 /*!40101 SET character_set_client = utf8 */; 2670 CREATE TABLE `connectors_out_oai_deleted_records` ( 2671 `num_set` int(11) unsigned NOT NULL DEFAULT '0', 2672 `num_notice` int(11) unsigned NOT NULL DEFAULT '0', 2673 `deletion_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 2674 PRIMARY KEY (`num_set`,`num_notice`) 2675 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 2676 /*!40101 SET character_set_client = @saved_cs_client */; 2677 2678 -- 2679 -- Dumping data for table `connectors_out_oai_deleted_records` 2680 -- 2681 2682 LOCK TABLES `connectors_out_oai_deleted_records` WRITE; 2683 /*!40000 ALTER TABLE `connectors_out_oai_deleted_records` DISABLE KEYS */; 2684 /*!40000 ALTER TABLE `connectors_out_oai_deleted_records` ENABLE KEYS */; 2685 UNLOCK TABLES; 2686 2687 -- 2688 -- Table structure for table `connectors_out_oai_tokens` 2265 2689 -- 2266 2690 2267 2691 DROP TABLE IF EXISTS `connectors_out_oai_tokens`; 2268 CREATE TABLE IF NOT EXISTS `connectors_out_oai_tokens` ( 2269 `connectors_out_oai_token_token` varchar(32) COLLATE utf8_unicode_ci NOT NULL, 2692 /*!40101 SET @saved_cs_client = @@character_set_client */; 2693 /*!40101 SET character_set_client = utf8 */; 2694 CREATE TABLE `connectors_out_oai_tokens` ( 2695 `connectors_out_oai_token_token` varchar(32) COLLATE utf8_unicode_ci NOT NULL, 2270 2696 `connectors_out_oai_token_environnement` text COLLATE utf8_unicode_ci NOT NULL, 2271 2697 `connectors_out_oai_token_expirationdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 2272 2698 PRIMARY KEY (`connectors_out_oai_token_token`) 2273 2699 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2274 2275 -- 2276 -- Volcar la base de datos para la tabla `connectors_out_oai_tokens` 2277 -- 2278 2279 2280 -- -------------------------------------------------------- 2281 2282 -- 2283 -- Estructura de tabla para la tabla `connectors_out_setcache_values` 2700 /*!40101 SET character_set_client = @saved_cs_client */; 2701 2702 -- 2703 -- Dumping data for table `connectors_out_oai_tokens` 2704 -- 2705 2706 LOCK TABLES `connectors_out_oai_tokens` WRITE; 2707 /*!40000 ALTER TABLE `connectors_out_oai_tokens` DISABLE KEYS */; 2708 /*!40000 ALTER TABLE `connectors_out_oai_tokens` ENABLE KEYS */; 2709 UNLOCK TABLES; 2710 2711 -- 2712 -- Table structure for table `connectors_out_setcache_values` 2284 2713 -- 2285 2714 2286 2715 DROP TABLE IF EXISTS `connectors_out_setcache_values`; 2287 CREATE TABLE IF NOT EXISTS `connectors_out_setcache_values` ( 2716 /*!40101 SET @saved_cs_client = @@character_set_client */; 2717 /*!40101 SET character_set_client = utf8 */; 2718 CREATE TABLE `connectors_out_setcache_values` ( 2288 2719 `connectors_out_setcache_values_cachenum` int(11) NOT NULL DEFAULT '0', 2289 2720 `connectors_out_setcache_values_value` int(11) NOT NULL DEFAULT '0', 2290 2721 PRIMARY KEY (`connectors_out_setcache_values_cachenum`,`connectors_out_setcache_values_value`) 2291 2722 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2292 2293 -- 2294 -- Volcar la base de datos para la tabla `connectors_out_setcache_values` 2295 -- 2296 2297 -- 2298 -- Estructura de tabla para la tabla `connectors_out_setcaches` 2723 /*!40101 SET character_set_client = @saved_cs_client */; 2724 2725 -- 2726 -- Dumping data for table `connectors_out_setcache_values` 2727 -- 2728 2729 LOCK TABLES `connectors_out_setcache_values` WRITE; 2730 /*!40000 ALTER TABLE `connectors_out_setcache_values` DISABLE KEYS */; 2731 /*!40000 ALTER TABLE `connectors_out_setcache_values` ENABLE KEYS */; 2732 UNLOCK TABLES; 2733 2734 -- 2735 -- Table structure for table `connectors_out_setcaches` 2299 2736 -- 2300 2737 2301 2738 DROP TABLE IF EXISTS `connectors_out_setcaches`; 2302 CREATE TABLE IF NOT EXISTS `connectors_out_setcaches` ( 2303 `connectors_out_setcache_id` int(11) NOT NULL AUTO_INCREMENT, 2739 /*!40101 SET @saved_cs_client = @@character_set_client */; 2740 /*!40101 SET character_set_client = utf8 */; 2741 CREATE TABLE `connectors_out_setcaches` ( 2742 `connectors_out_setcache_id` int(11) NOT NULL AUTO_INCREMENT, 2304 2743 `connectors_out_setcache_setnum` int(11) NOT NULL DEFAULT '0', 2305 2744 `connectors_out_setcache_lifeduration` int(4) NOT NULL DEFAULT '0', … … 2308 2747 PRIMARY KEY (`connectors_out_setcache_id`), 2309 2748 UNIQUE KEY `connectors_out_setcache_setnum` (`connectors_out_setcache_setnum`) 2310 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2311 2312 -- 2313 -- Volcar la base de datos para la tabla `connectors_out_setcaches` 2314 -- 2315 2316 2317 -- -------------------------------------------------------- 2318 2319 -- 2320 -- Estructura de tabla para la tabla `connectors_out_setcateg_sets` 2749 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2750 /*!40101 SET character_set_client = @saved_cs_client */; 2751 2752 -- 2753 -- Dumping data for table `connectors_out_setcaches` 2754 -- 2755 2756 LOCK TABLES `connectors_out_setcaches` WRITE; 2757 /*!40000 ALTER TABLE `connectors_out_setcaches` DISABLE KEYS */; 2758 /*!40000 ALTER TABLE `connectors_out_setcaches` ENABLE KEYS */; 2759 UNLOCK TABLES; 2760 2761 -- 2762 -- Table structure for table `connectors_out_setcateg_sets` 2321 2763 -- 2322 2764 2323 2765 DROP TABLE IF EXISTS `connectors_out_setcateg_sets`; 2324 CREATE TABLE IF NOT EXISTS `connectors_out_setcateg_sets` ( 2325 `connectors_out_setcategset_setnum` int(11) NOT NULL, 2766 /*!40101 SET @saved_cs_client = @@character_set_client */; 2767 /*!40101 SET character_set_client = utf8 */; 2768 CREATE TABLE `connectors_out_setcateg_sets` ( 2769 `connectors_out_setcategset_setnum` int(11) NOT NULL, 2326 2770 `connectors_out_setcategset_categnum` int(11) NOT NULL DEFAULT '0', 2327 2771 PRIMARY KEY (`connectors_out_setcategset_setnum`,`connectors_out_setcategset_categnum`) 2328 2772 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2329 2330 -- 2331 -- Volcar la base de datos para la tabla `connectors_out_setcateg_sets` 2332 -- 2333 2334 2335 2336 -- -------------------------------------------------------- 2337 2338 -- 2339 -- Estructura de tabla para la tabla `connectors_out_setcategs` 2773 /*!40101 SET character_set_client = @saved_cs_client */; 2774 2775 -- 2776 -- Dumping data for table `connectors_out_setcateg_sets` 2777 -- 2778 2779 LOCK TABLES `connectors_out_setcateg_sets` WRITE; 2780 /*!40000 ALTER TABLE `connectors_out_setcateg_sets` DISABLE KEYS */; 2781 /*!40000 ALTER TABLE `connectors_out_setcateg_sets` ENABLE KEYS */; 2782 UNLOCK TABLES; 2783 2784 -- 2785 -- Table structure for table `connectors_out_setcategs` 2340 2786 -- 2341 2787 2342 2788 DROP TABLE IF EXISTS `connectors_out_setcategs`; 2343 CREATE TABLE IF NOT EXISTS `connectors_out_setcategs` ( 2789 /*!40101 SET @saved_cs_client = @@character_set_client */; 2790 /*!40101 SET character_set_client = utf8 */; 2791 CREATE TABLE `connectors_out_setcategs` ( 2344 2792 `connectors_out_setcateg_id` int(11) NOT NULL AUTO_INCREMENT, 2345 2793 `connectors_out_setcateg_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2346 2794 PRIMARY KEY (`connectors_out_setcateg_id`), 2347 2795 UNIQUE KEY `connectors_out_setcateg_name` (`connectors_out_setcateg_name`) 2348 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2349 2350 -- 2351 -- Volcar la base de datos para la tabla `connectors_out_setcategs` 2352 -- 2353 2354 2355 -- -------------------------------------------------------- 2356 2357 2358 2359 -- 2360 -- Estructura de tabla para la tabla `connectors_out_sets` 2796 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2797 /*!40101 SET character_set_client = @saved_cs_client */; 2798 2799 -- 2800 -- Dumping data for table `connectors_out_setcategs` 2801 -- 2802 2803 LOCK TABLES `connectors_out_setcategs` WRITE; 2804 /*!40000 ALTER TABLE `connectors_out_setcategs` DISABLE KEYS */; 2805 /*!40000 ALTER TABLE `connectors_out_setcategs` ENABLE KEYS */; 2806 UNLOCK TABLES; 2807 2808 -- 2809 -- Table structure for table `connectors_out_sets` 2361 2810 -- 2362 2811 2363 2812 DROP TABLE IF EXISTS `connectors_out_sets`; 2364 CREATE TABLE IF NOT EXISTS `connectors_out_sets` ( 2813 /*!40101 SET @saved_cs_client = @@character_set_client */; 2814 /*!40101 SET character_set_client = utf8 */; 2815 CREATE TABLE `connectors_out_sets` ( 2365 2816 `connector_out_set_id` int(11) NOT NULL AUTO_INCREMENT, 2366 2817 `connector_out_set_caption` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2370 2821 PRIMARY KEY (`connector_out_set_id`), 2371 2822 UNIQUE KEY `connector_out_set_caption` (`connector_out_set_caption`) 2372 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2373 2374 -- 2375 -- Volcar la base de datos para la tabla `connectors_out_sets` 2376 -- 2377 2378 2379 -- -------------------------------------------------------- 2380 2381 -- 2382 -- Estructura de tabla para la tabla `connectors_out_sources` 2823 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2824 /*!40101 SET character_set_client = @saved_cs_client */; 2825 2826 -- 2827 -- Dumping data for table `connectors_out_sets` 2828 -- 2829 2830 LOCK TABLES `connectors_out_sets` WRITE; 2831 /*!40000 ALTER TABLE `connectors_out_sets` DISABLE KEYS */; 2832 /*!40000 ALTER TABLE `connectors_out_sets` ENABLE KEYS */; 2833 UNLOCK TABLES; 2834 2835 -- 2836 -- Table structure for table `connectors_out_sources` 2383 2837 -- 2384 2838 2385 2839 DROP TABLE IF EXISTS `connectors_out_sources`; 2386 CREATE TABLE IF NOT EXISTS `connectors_out_sources` ( 2840 /*!40101 SET @saved_cs_client = @@character_set_client */; 2841 /*!40101 SET character_set_client = utf8 */; 2842 CREATE TABLE `connectors_out_sources` ( 2387 2843 `connectors_out_source_id` int(11) NOT NULL AUTO_INCREMENT, 2388 2844 `connectors_out_sources_connectornum` int(11) NOT NULL DEFAULT '0', … … 2391 2847 `connectors_out_source_config` longblob NOT NULL, 2392 2848 PRIMARY KEY (`connectors_out_source_id`) 2393 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2394 2395 -- 2396 -- Volcar la base de datos para la tabla `connectors_out_sources` 2397 -- 2398 2399 2400 -- -------------------------------------------------------- 2401 2402 -- 2403 -- Estructura de tabla para la tabla `connectors_out_sources_esgroups` 2849 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2850 /*!40101 SET character_set_client = @saved_cs_client */; 2851 2852 -- 2853 -- Dumping data for table `connectors_out_sources` 2854 -- 2855 2856 LOCK TABLES `connectors_out_sources` WRITE; 2857 /*!40000 ALTER TABLE `connectors_out_sources` DISABLE KEYS */; 2858 /*!40000 ALTER TABLE `connectors_out_sources` ENABLE KEYS */; 2859 UNLOCK TABLES; 2860 2861 -- 2862 -- Table structure for table `connectors_out_sources_esgroups` 2404 2863 -- 2405 2864 2406 2865 DROP TABLE IF EXISTS `connectors_out_sources_esgroups`; 2407 CREATE TABLE IF NOT EXISTS `connectors_out_sources_esgroups` ( 2866 /*!40101 SET @saved_cs_client = @@character_set_client */; 2867 /*!40101 SET character_set_client = utf8 */; 2868 CREATE TABLE `connectors_out_sources_esgroups` ( 2408 2869 `connectors_out_source_esgroup_sourcenum` int(11) NOT NULL DEFAULT '0', 2409 2870 `connectors_out_source_esgroup_esgroupnum` int(11) NOT NULL DEFAULT '0', 2410 2871 PRIMARY KEY (`connectors_out_source_esgroup_sourcenum`,`connectors_out_source_esgroup_esgroupnum`) 2411 2872 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2412 2413 -- 2414 -- Volcar la base de datos para la tabla `connectors_out_sources_esgroups` 2415 -- 2416 2417 2418 -- -------------------------------------------------------- 2419 2420 -- 2421 -- Estructura de tabla para la tabla `connectors_sources` 2873 /*!40101 SET character_set_client = @saved_cs_client */; 2874 2875 -- 2876 -- Dumping data for table `connectors_out_sources_esgroups` 2877 -- 2878 2879 LOCK TABLES `connectors_out_sources_esgroups` WRITE; 2880 /*!40000 ALTER TABLE `connectors_out_sources_esgroups` DISABLE KEYS */; 2881 /*!40000 ALTER TABLE `connectors_out_sources_esgroups` ENABLE KEYS */; 2882 UNLOCK TABLES; 2883 2884 -- 2885 -- Table structure for table `connectors_sources` 2422 2886 -- 2423 2887 2424 2888 DROP TABLE IF EXISTS `connectors_sources`; 2425 CREATE TABLE IF NOT EXISTS `connectors_sources` ( 2426 `source_id` int(10) unsigned NOT NULL AUTO_INCREMENT, 2889 /*!40101 SET @saved_cs_client = @@character_set_client */; 2890 /*!40101 SET character_set_client = utf8 */; 2891 CREATE TABLE `connectors_sources` ( 2892 `source_id` int(10) unsigned NOT NULL AUTO_INCREMENT, 2427 2893 `id_connector` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2428 2894 `parameters` mediumtext COLLATE utf8_unicode_ci NOT NULL, … … 2441 2907 `type_enrichment_allowed` text COLLATE utf8_unicode_ci NOT NULL, 2442 2908 `ico_notice` varchar(256) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2909 `last_sync_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 2443 2910 PRIMARY KEY (`source_id`) 2444 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2445 2446 -- 2447 -- Volcar la base de datos para la tabla `connectors_sources` 2448 -- 2449 2450 2451 -- -------------------------------------------------------- 2452 2453 -- 2454 -- Estructura de tabla para la tabla `coordonnees` 2911 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2912 /*!40101 SET character_set_client = @saved_cs_client */; 2913 2914 -- 2915 -- Dumping data for table `connectors_sources` 2916 -- 2917 2918 LOCK TABLES `connectors_sources` WRITE; 2919 /*!40000 ALTER TABLE `connectors_sources` DISABLE KEYS */; 2920 /*!40000 ALTER TABLE `connectors_sources` ENABLE KEYS */; 2921 UNLOCK TABLES; 2922 2923 -- 2924 -- Table structure for table `coordonnees` 2455 2925 -- 2456 2926 2457 2927 DROP TABLE IF EXISTS `coordonnees`; 2458 CREATE TABLE IF NOT EXISTS `coordonnees` ( 2928 /*!40101 SET @saved_cs_client = @@character_set_client */; 2929 /*!40101 SET character_set_client = utf8 */; 2930 CREATE TABLE `coordonnees` ( 2459 2931 `id_contact` int(8) unsigned NOT NULL AUTO_INCREMENT, 2460 2932 `type_coord` int(1) unsigned NOT NULL DEFAULT '0', … … 2471 2943 `tel2` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2472 2944 `fax` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2473 `email` varchar( 100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',2945 `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2474 2946 `commentaires` text COLLATE utf8_unicode_ci, 2475 2947 PRIMARY KEY (`id_contact`), 2476 2948 KEY `i_num_entite` (`num_entite`) 2477 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2478 2479 -- 2480 -- Volcar la base de datos para la tabla `coordonnees` 2481 -- 2482 2483 2484 -- -------------------------------------------------------- 2485 2486 -- 2487 -- Estructura de tabla para la tabla `demandes` 2949 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2950 /*!40101 SET character_set_client = @saved_cs_client */; 2951 2952 -- 2953 -- Dumping data for table `coordonnees` 2954 -- 2955 2956 LOCK TABLES `coordonnees` WRITE; 2957 /*!40000 ALTER TABLE `coordonnees` DISABLE KEYS */; 2958 /*!40000 ALTER TABLE `coordonnees` ENABLE KEYS */; 2959 UNLOCK TABLES; 2960 2961 -- 2962 -- Table structure for table `demandes` 2488 2963 -- 2489 2964 2490 2965 DROP TABLE IF EXISTS `demandes`; 2491 CREATE TABLE IF NOT EXISTS `demandes` ( 2492 `id_demande` int(10) unsigned NOT NULL AUTO_INCREMENT, 2493 `num_demandeur` mediumint(8) NOT NULL DEFAULT '0', 2966 /*!40101 SET @saved_cs_client = @@character_set_client */; 2967 /*!40101 SET character_set_client = utf8 */; 2968 CREATE TABLE `demandes` ( 2969 `id_demande` int(10) unsigned NOT NULL AUTO_INCREMENT, 2970 `num_demandeur` int(10) unsigned NOT NULL DEFAULT '0', 2494 2971 `theme_demande` int(3) NOT NULL DEFAULT '0', 2495 2972 `type_demande` int(3) NOT NULL DEFAULT '0', … … 2503 2980 `num_user_cloture` mediumint(3) NOT NULL DEFAULT '0', 2504 2981 `num_notice` int(10) NOT NULL DEFAULT '0', 2982 `dmde_read_gestion` int(1) unsigned NOT NULL DEFAULT '0', 2983 `reponse_finale` text COLLATE utf8_unicode_ci, 2984 `dmde_read_opac` int(1) unsigned NOT NULL DEFAULT '0', 2985 `demande_note_num` int(10) unsigned NOT NULL DEFAULT '0', 2505 2986 PRIMARY KEY (`id_demande`), 2506 2987 KEY `i_num_demandeur` (`num_demandeur`), 2507 2988 KEY `i_date_demande` (`date_demande`), 2508 2989 KEY `i_deadline_demande` (`deadline_demande`) 2509 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2510 2511 -- 2512 -- Volcar la base de datos para la tabla `demandes` 2513 -- 2514 2515 2516 -- -------------------------------------------------------- 2517 2518 -- 2519 -- Estructura de tabla para la tabla `demandes_actions` 2990 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2991 /*!40101 SET character_set_client = @saved_cs_client */; 2992 2993 -- 2994 -- Dumping data for table `demandes` 2995 -- 2996 2997 LOCK TABLES `demandes` WRITE; 2998 /*!40000 ALTER TABLE `demandes` DISABLE KEYS */; 2999 /*!40000 ALTER TABLE `demandes` ENABLE KEYS */; 3000 UNLOCK TABLES; 3001 3002 -- 3003 -- Table structure for table `demandes_actions` 2520 3004 -- 2521 3005 2522 3006 DROP TABLE IF EXISTS `demandes_actions`; 2523 CREATE TABLE IF NOT EXISTS `demandes_actions` ( 3007 /*!40101 SET @saved_cs_client = @@character_set_client */; 3008 /*!40101 SET character_set_client = utf8 */; 3009 CREATE TABLE `demandes_actions` ( 2524 3010 `id_action` int(10) unsigned NOT NULL AUTO_INCREMENT, 2525 3011 `type_action` int(3) NOT NULL DEFAULT '0', … … 2534 3020 `prive_action` int(1) NOT NULL DEFAULT '0', 2535 3021 `num_demande` int(10) NOT NULL DEFAULT '0', 2536 `actions_num_user` tinyint(4) unsigned NOT NULL DEFAULT '0',3022 `actions_num_user` int(10) unsigned NOT NULL DEFAULT '0', 2537 3023 `actions_type_user` tinyint(4) unsigned NOT NULL DEFAULT '0', 2538 `actions_read` int(1) NOT NULL DEFAULT '0', 3024 `actions_read_opac` int(11) NOT NULL DEFAULT '0', 3025 `actions_read_gestion` int(1) unsigned NOT NULL DEFAULT '0', 2539 3026 PRIMARY KEY (`id_action`), 2540 3027 KEY `i_date_action` (`date_action`), … … 2542 3029 KEY `i_num_demande` (`num_demande`), 2543 3030 KEY `i_actions_user` (`actions_num_user`,`actions_type_user`) 2544 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2545 2546 -- 2547 -- Volcar la base de datos para la tabla `demandes_actions` 2548 -- 2549 2550 2551 -- -------------------------------------------------------- 2552 2553 -- 2554 -- Estructura de tabla para la tabla `demandes_notes` 3031 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3032 /*!40101 SET character_set_client = @saved_cs_client */; 3033 3034 -- 3035 -- Dumping data for table `demandes_actions` 3036 -- 3037 3038 LOCK TABLES `demandes_actions` WRITE; 3039 /*!40000 ALTER TABLE `demandes_actions` DISABLE KEYS */; 3040 /*!40000 ALTER TABLE `demandes_actions` ENABLE KEYS */; 3041 UNLOCK TABLES; 3042 3043 -- 3044 -- Table structure for table `demandes_custom` 3045 -- 3046 3047 DROP TABLE IF EXISTS `demandes_custom`; 3048 /*!40101 SET @saved_cs_client = @@character_set_client */; 3049 /*!40101 SET character_set_client = utf8 */; 3050 CREATE TABLE `demandes_custom` ( 3051 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 3052 `name` varchar(255) NOT NULL DEFAULT '', 3053 `titre` varchar(255) DEFAULT NULL, 3054 `type` varchar(10) NOT NULL DEFAULT 'text', 3055 `datatype` varchar(10) NOT NULL DEFAULT '', 3056 `options` text, 3057 `multiple` int(11) NOT NULL DEFAULT '0', 3058 `obligatoire` int(11) NOT NULL DEFAULT '0', 3059 `ordre` int(11) DEFAULT NULL, 3060 `search` int(1) unsigned NOT NULL DEFAULT '0', 3061 `export` int(1) unsigned NOT NULL DEFAULT '0', 3062 `exclusion_obligatoire` int(1) unsigned NOT NULL DEFAULT '0', 3063 `pond` int(11) NOT NULL DEFAULT '100', 3064 `opac_sort` int(11) NOT NULL DEFAULT '0', 3065 PRIMARY KEY (`idchamp`) 3066 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 3067 /*!40101 SET character_set_client = @saved_cs_client */; 3068 3069 -- 3070 -- Dumping data for table `demandes_custom` 3071 -- 3072 3073 LOCK TABLES `demandes_custom` WRITE; 3074 /*!40000 ALTER TABLE `demandes_custom` DISABLE KEYS */; 3075 /*!40000 ALTER TABLE `demandes_custom` ENABLE KEYS */; 3076 UNLOCK TABLES; 3077 3078 -- 3079 -- Table structure for table `demandes_custom_lists` 3080 -- 3081 3082 DROP TABLE IF EXISTS `demandes_custom_lists`; 3083 /*!40101 SET @saved_cs_client = @@character_set_client */; 3084 /*!40101 SET character_set_client = utf8 */; 3085 CREATE TABLE `demandes_custom_lists` ( 3086 `demandes_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 3087 `demandes_custom_list_value` varchar(255) DEFAULT NULL, 3088 `demandes_custom_list_lib` varchar(255) DEFAULT NULL, 3089 `ordre` int(11) DEFAULT NULL, 3090 KEY `i_demandes_custom_champ` (`demandes_custom_champ`), 3091 KEY `i_demandes_champ_list_value` (`demandes_custom_champ`,`demandes_custom_list_value`) 3092 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 3093 /*!40101 SET character_set_client = @saved_cs_client */; 3094 3095 -- 3096 -- Dumping data for table `demandes_custom_lists` 3097 -- 3098 3099 LOCK TABLES `demandes_custom_lists` WRITE; 3100 /*!40000 ALTER TABLE `demandes_custom_lists` DISABLE KEYS */; 3101 /*!40000 ALTER TABLE `demandes_custom_lists` ENABLE KEYS */; 3102 UNLOCK TABLES; 3103 3104 -- 3105 -- Table structure for table `demandes_custom_values` 3106 -- 3107 3108 DROP TABLE IF EXISTS `demandes_custom_values`; 3109 /*!40101 SET @saved_cs_client = @@character_set_client */; 3110 /*!40101 SET character_set_client = utf8 */; 3111 CREATE TABLE `demandes_custom_values` ( 3112 `demandes_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 3113 `demandes_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', 3114 `demandes_custom_small_text` varchar(255) DEFAULT NULL, 3115 `demandes_custom_text` text, 3116 `demandes_custom_integer` int(11) DEFAULT NULL, 3117 `demandes_custom_date` date DEFAULT NULL, 3118 `demandes_custom_float` float DEFAULT NULL, 3119 KEY `i_demandes_custom_champ` (`demandes_custom_champ`), 3120 KEY `i_demandes_custom_origine` (`demandes_custom_origine`) 3121 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 3122 /*!40101 SET character_set_client = @saved_cs_client */; 3123 3124 -- 3125 -- Dumping data for table `demandes_custom_values` 3126 -- 3127 3128 LOCK TABLES `demandes_custom_values` WRITE; 3129 /*!40000 ALTER TABLE `demandes_custom_values` DISABLE KEYS */; 3130 /*!40000 ALTER TABLE `demandes_custom_values` ENABLE KEYS */; 3131 UNLOCK TABLES; 3132 3133 -- 3134 -- Table structure for table `demandes_notes` 2555 3135 -- 2556 3136 2557 3137 DROP TABLE IF EXISTS `demandes_notes`; 2558 CREATE TABLE IF NOT EXISTS `demandes_notes` ( 2559 `id_note` int(10) unsigned NOT NULL AUTO_INCREMENT, 3138 /*!40101 SET @saved_cs_client = @@character_set_client */; 3139 /*!40101 SET character_set_client = utf8 */; 3140 CREATE TABLE `demandes_notes` ( 3141 `id_note` int(10) unsigned NOT NULL AUTO_INCREMENT, 2560 3142 `prive` int(1) NOT NULL DEFAULT '0', 2561 3143 `rapport` int(1) NOT NULL DEFAULT '0', 2562 3144 `contenu` text COLLATE utf8_unicode_ci NOT NULL, 2563 `date_note` date NOT NULL DEFAULT '0000-00-00',3145 `date_note` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 2564 3146 `num_action` int(10) NOT NULL DEFAULT '0', 2565 3147 `num_note_parent` int(10) NOT NULL DEFAULT '0', 2566 `notes_num_user` tinyint(4) unsigned NOT NULL DEFAULT '0',3148 `notes_num_user` int(10) unsigned NOT NULL DEFAULT '0', 2567 3149 `notes_type_user` tinyint(4) unsigned NOT NULL DEFAULT '0', 3150 `notes_read_gestion` int(1) unsigned NOT NULL DEFAULT '0', 3151 `notes_read_opac` int(1) unsigned NOT NULL DEFAULT '0', 2568 3152 PRIMARY KEY (`id_note`), 2569 3153 KEY `i_date_note` (`date_note`), … … 2571 3155 KEY `i_num_note_parent` (`num_note_parent`), 2572 3156 KEY `i_notes_user` (`notes_num_user`,`notes_type_user`) 2573 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2574 2575 -- 2576 -- Volcar la base de datos para la tabla `demandes_notes` 2577 -- 2578 2579 2580 -- -------------------------------------------------------- 2581 2582 -- 2583 -- Estructura de tabla para la tabla `demandes_theme` 3157 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3158 /*!40101 SET character_set_client = @saved_cs_client */; 3159 3160 -- 3161 -- Dumping data for table `demandes_notes` 3162 -- 3163 3164 LOCK TABLES `demandes_notes` WRITE; 3165 /*!40000 ALTER TABLE `demandes_notes` DISABLE KEYS */; 3166 /*!40000 ALTER TABLE `demandes_notes` ENABLE KEYS */; 3167 UNLOCK TABLES; 3168 3169 -- 3170 -- Table structure for table `demandes_theme` 2584 3171 -- 2585 3172 2586 3173 DROP TABLE IF EXISTS `demandes_theme`; 2587 CREATE TABLE IF NOT EXISTS `demandes_theme` ( 3174 /*!40101 SET @saved_cs_client = @@character_set_client */; 3175 /*!40101 SET character_set_client = utf8 */; 3176 CREATE TABLE `demandes_theme` ( 2588 3177 `id_theme` int(10) unsigned NOT NULL AUTO_INCREMENT, 2589 3178 `libelle_theme` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2590 3179 PRIMARY KEY (`id_theme`) 2591 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2592 2593 -- 2594 -- Volcar la base de datos para la tabla `demandes_theme` 2595 -- 2596 2597 2598 -- -------------------------------------------------------- 2599 2600 -- 2601 -- Estructura de tabla para la tabla `demandes_type` 3180 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3181 /*!40101 SET character_set_client = @saved_cs_client */; 3182 3183 -- 3184 -- Dumping data for table `demandes_theme` 3185 -- 3186 3187 LOCK TABLES `demandes_theme` WRITE; 3188 /*!40000 ALTER TABLE `demandes_theme` DISABLE KEYS */; 3189 /*!40000 ALTER TABLE `demandes_theme` ENABLE KEYS */; 3190 UNLOCK TABLES; 3191 3192 -- 3193 -- Table structure for table `demandes_type` 2602 3194 -- 2603 3195 2604 3196 DROP TABLE IF EXISTS `demandes_type`; 2605 CREATE TABLE IF NOT EXISTS `demandes_type` ( 2606 `id_type` int(10) unsigned NOT NULL AUTO_INCREMENT, 3197 /*!40101 SET @saved_cs_client = @@character_set_client */; 3198 /*!40101 SET character_set_client = utf8 */; 3199 CREATE TABLE `demandes_type` ( 3200 `id_type` int(10) unsigned NOT NULL AUTO_INCREMENT, 2607 3201 `libelle_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3202 `allowed_actions` text COLLATE utf8_unicode_ci NOT NULL, 2608 3203 PRIMARY KEY (`id_type`) 2609 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2610 2611 -- 2612 -- Volcar la base de datos para la tabla `demandes_type` 2613 -- 2614 2615 2616 -- -------------------------------------------------------- 2617 2618 -- 2619 -- Estructura de tabla para la tabla `demandes_users` 3204 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3205 /*!40101 SET character_set_client = @saved_cs_client */; 3206 3207 -- 3208 -- Dumping data for table `demandes_type` 3209 -- 3210 3211 LOCK TABLES `demandes_type` WRITE; 3212 /*!40000 ALTER TABLE `demandes_type` DISABLE KEYS */; 3213 /*!40000 ALTER TABLE `demandes_type` ENABLE KEYS */; 3214 UNLOCK TABLES; 3215 3216 -- 3217 -- Table structure for table `demandes_users` 2620 3218 -- 2621 3219 2622 3220 DROP TABLE IF EXISTS `demandes_users`; 2623 CREATE TABLE IF NOT EXISTS `demandes_users` ( 2624 `num_user` int(10) NOT NULL DEFAULT '0', 3221 /*!40101 SET @saved_cs_client = @@character_set_client */; 3222 /*!40101 SET character_set_client = utf8 */; 3223 CREATE TABLE `demandes_users` ( 3224 `num_user` int(10) NOT NULL DEFAULT '0', 2625 3225 `num_demande` int(10) NOT NULL DEFAULT '0', 2626 3226 `date_creation` date NOT NULL DEFAULT '0000-00-00', … … 2628 3228 PRIMARY KEY (`num_user`,`num_demande`) 2629 3229 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2630 2631 -- 2632 -- Volcar la base de datos para la tabla `demandes_users` 2633 -- 2634 2635 2636 -- -------------------------------------------------------- 2637 2638 -- 2639 -- Estructura de tabla para la tabla `docs_codestat` 3230 /*!40101 SET character_set_client = @saved_cs_client */; 3231 3232 -- 3233 -- Dumping data for table `demandes_users` 3234 -- 3235 3236 LOCK TABLES `demandes_users` WRITE; 3237 /*!40000 ALTER TABLE `demandes_users` DISABLE KEYS */; 3238 /*!40000 ALTER TABLE `demandes_users` ENABLE KEYS */; 3239 UNLOCK TABLES; 3240 3241 -- 3242 -- Table structure for table `docs_codestat` 2640 3243 -- 2641 3244 2642 3245 DROP TABLE IF EXISTS `docs_codestat`; 2643 CREATE TABLE IF NOT EXISTS `docs_codestat` ( 2644 `idcode` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3246 /*!40101 SET @saved_cs_client = @@character_set_client */; 3247 /*!40101 SET character_set_client = utf8 */; 3248 CREATE TABLE `docs_codestat` ( 3249 `idcode` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 2645 3250 `codestat_libelle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2646 3251 `statisdoc_codage_import` char(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2648 3253 PRIMARY KEY (`idcode`), 2649 3254 KEY `statisdoc_owner` (`statisdoc_owner`) 2650 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=13 ; 2651 2652 -- 2653 -- Volcar la base de datos para la tabla `docs_codestat` 2654 -- 2655 2656 INSERT INTO `docs_codestat` (`idcode`, `codestat_libelle`, `statisdoc_codage_import`, `statisdoc_owner`) VALUES 2657 (10, 'Indeterminado', 'u', 0), 2658 (11, 'Jóvenes', 'j', 0), 2659 (12, 'Adultos', 'a', 0); 2660 2661 -- -------------------------------------------------------- 2662 2663 2664 -- 2665 -- Estructura de tabla para la tabla `docs_location` 3255 ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3256 /*!40101 SET character_set_client = @saved_cs_client */; 3257 3258 -- 3259 -- Dumping data for table `docs_codestat` 3260 -- 3261 3262 LOCK TABLES `docs_codestat` WRITE; 3263 /*!40000 ALTER TABLE `docs_codestat` DISABLE KEYS */; 3264 INSERT INTO `docs_codestat` VALUES (10,'Indeterminado','u',0),(11,'Jóvenes','j',0),(12,'Adultos','a',0); 3265 /*!40000 ALTER TABLE `docs_codestat` ENABLE KEYS */; 3266 UNLOCK TABLES; 3267 3268 -- 3269 -- Table structure for table `docs_location` 2666 3270 -- 2667 3271 2668 3272 DROP TABLE IF EXISTS `docs_location`; 2669 CREATE TABLE IF NOT EXISTS `docs_location` ( 2670 `idlocation` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3273 /*!40101 SET @saved_cs_client = @@character_set_client */; 3274 /*!40101 SET character_set_client = utf8 */; 3275 CREATE TABLE `docs_location` ( 3276 `idlocation` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 2671 3277 `location_libelle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2672 3278 `locdoc_codage_import` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2695 3301 PRIMARY KEY (`idlocation`), 2696 3302 KEY `locdoc_owner` (`locdoc_owner`) 2697 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=8;2698 2699 -- 2700 -- Volcar la base de datos para la tabla `docs_location`2701 -- 2702 2703 INSERT INTO `docs_location` (`idlocation`, `location_libelle`, `locdoc_codage_import`, `locdoc_owner`, `location_pic`, `location_visible_opac`, `name`, `adr1`, `adr2`, `cp`, `town`, `state`, `country`, `phone`, `email`, `website`, `logo`, `commentaire`, `transfert_ordre`, `transfert_statut_defaut`, `num_infopage`, `css_style`, `surloc_num`, `surloc_used`, `show_a2z`) VALUES 2704 (1, 'Biblioteca principal', '', 2, 'images/site/bib_princ.jpg', 1, 'Biblioteca test de PMB', 'PMB Services', '24 & 26, place des Halles', '72500', 'CHATEAU DU LOIR', '', 'Francia', '02 43 440 660', 'pmb@sigb.net', 'http://www.sigb.net/', 'logo_default.jpg', '', 9999, 0, 0, '', 0, 0, 0), 2705 (2, 'Reserva', '', 2, '', 0, 'Biblioteca test de PMB', '', '', '', '', '', '', '', 'pmb@sigb.net', 'http://www.sigb.net', 'logo_default.jpg', '', 9999, 0, 0, '', 0, 0, 0), 2706 (7, 'Bibliobús', '', 2, 'images/site/bibliobus.jpg', 1, 'Biblioteca test de PMB', 'rue de la culture', '', '72500', 'Château du loir', '', 'Francia', '02 43 440 660', 'pmb@sigb.net', 'http://www.sigb.net', 'logo_default.jpg', '', 9999, 0, 0, '', 0, 0,0);2707 2708 -- -------------------------------------------------------- 2709 2710 -- 2711 -- Estructura de tabla para la tabla`docs_section`3303 ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3304 /*!40101 SET character_set_client = @saved_cs_client */; 3305 3306 -- 3307 -- Dumping data for table `docs_location` 3308 -- 3309 3310 LOCK TABLES `docs_location` WRITE; 3311 /*!40000 ALTER TABLE `docs_location` DISABLE KEYS */; 3312 INSERT INTO `docs_location` VALUES (1,'Biblioteca principal','',2,'images/site/bib_princ.jpg',1,'Biblioteca test de PMB','PMB Services','24 & 26, place des Halles','72500','CHATEAU DU LOIR','','Francia','02 43 440 660','pmb@sigb.net','http://www.sigb.net/','logo_default.jpg','',9999,0,0,'',0,0,0),(2,'Reserva','',2,'',0,'Biblioteca test de PMB','','','','','','','','pmb@sigb.net','http://www.sigb.net','logo_default.jpg','',9999,0,0,'',0,0,0),(7,'Bibliobús','',2,'images/site/bibliobus.jpg',1,'Biblioteca test de PMB','rue de la culture','','72500','Château du loir','','Francia','02 43 440 660','pmb@sigb.net','http://www.sigb.net','logo_default.jpg','',9999,0,0,'',0,0,0); 3313 /*!40000 ALTER TABLE `docs_location` ENABLE KEYS */; 3314 UNLOCK TABLES; 3315 3316 -- 3317 -- Table structure for table `docs_section` 2712 3318 -- 2713 3319 2714 3320 DROP TABLE IF EXISTS `docs_section`; 2715 CREATE TABLE IF NOT EXISTS `docs_section` ( 2716 `idsection` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3321 /*!40101 SET @saved_cs_client = @@character_set_client */; 3322 /*!40101 SET character_set_client = utf8 */; 3323 CREATE TABLE `docs_section` ( 3324 `idsection` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 2717 3325 `section_libelle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2718 3326 `sdoc_codage_import` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2722 3330 PRIMARY KEY (`idsection`), 2723 3331 KEY `sdoc_owner` (`sdoc_owner`) 2724 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=27 ; 2725 2726 -- 2727 -- Volcar la base de datos para la tabla `docs_section` 2728 -- 2729 2730 INSERT INTO `docs_section` (`idsection`, `section_libelle`, `sdoc_codage_import`, `sdoc_owner`, `section_pic`, `section_visible_opac`) VALUES 2731 (10, 'Documentales', '', 2, 'images/site/documentaire.jpg', 1), 2732 (11, 'Documentales Infantiles', '', 2, 'images/site/documentaire.jpg', 1), 2733 (12, 'Novelas Infantiles', '', 2, 'images/site/enfants.jpg', 1), 2734 (13, 'Novelas Juveniles', '', 2, 'images/site/sec3.jpg', 1), 2735 (16, 'Cómics Adultos', '', 2, 'images/site/sec1.jpg', 1), 2736 (17, 'Cómics Infantiles', '', 2, 'images/site/enfants.jpg', 1), 2737 (18, 'H (Historia local)', '', 2, 'images/site/histoire.jpg', 1), 2738 (19, 'FR (Fondo Regional)', '', 2, 'images/site/sec4.jpg', 1), 2739 (20, 'Cómics Juveniles', '', 2, 'images/site/sec3.jpg', 1), 2740 (21, 'Novelas policíacas', '', 2, 'images/site/sec1.jpg', 1), 2741 (23, 'Novelas letra grande', '', 2, 'images/site/large_vue.jpg', 1), 2742 (24, 'Novelas & Novelas extranjeras', '', 2, 'images/site/sec1.jpg', 1), 2743 (25, 'Documentales Juveniles', '', 2, 'images/site/documentaire.jpg', 1), 2744 (26, 'Cuentos Infantiles', '', 2, 'images/site/enfants.jpg', 1); 2745 2746 -- -------------------------------------------------------- 2747 2748 2749 -- 2750 -- Estructura de tabla para la tabla `docs_statut` 3332 ) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3333 /*!40101 SET character_set_client = @saved_cs_client */; 3334 3335 -- 3336 -- Dumping data for table `docs_section` 3337 -- 3338 3339 LOCK TABLES `docs_section` WRITE; 3340 /*!40000 ALTER TABLE `docs_section` DISABLE KEYS */; 3341 INSERT INTO `docs_section` VALUES (10,'Documentales','',2,'images/site/documentaire.jpg',1),(11,'Documentales Infantiles','',2,'images/site/documentaire.jpg',1),(12,'Novelas Infantiles','',2,'images/site/enfants.jpg',1),(13,'Novelas Juveniles','',2,'images/site/sec3.jpg',1),(16,'Cómics Adultos','',2,'images/site/sec1.jpg',1),(17,'Cómics Infantiles','',2,'images/site/enfants.jpg',1),(18,'H (Historia local)','',2,'images/site/histoire.jpg',1),(19,'FR (Fondo Regional)','',2,'images/site/sec4.jpg',1),(20,'Cómics Juveniles','',2,'images/site/sec3.jpg',1),(21,'Novelas policÃÂacas','',2,'images/site/sec1.jpg',1),(23,'Novelas letra grande','',2,'images/site/large_vue.jpg',1),(24,'Novelas & Novelas extranjeras','',2,'images/site/sec1.jpg',1),(25,'Documentales Juveniles','',2,'images/site/documentaire.jpg',1),(26,'Cuentos Infantiles','',2,'images/site/enfants.jpg',1); 3342 /*!40000 ALTER TABLE `docs_section` ENABLE KEYS */; 3343 UNLOCK TABLES; 3344 3345 -- 3346 -- Table structure for table `docs_statut` 2751 3347 -- 2752 3348 2753 3349 DROP TABLE IF EXISTS `docs_statut`; 2754 CREATE TABLE IF NOT EXISTS `docs_statut` ( 2755 `idstatut` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3350 /*!40101 SET @saved_cs_client = @@character_set_client */; 3351 /*!40101 SET character_set_client = utf8 */; 3352 CREATE TABLE `docs_statut` ( 3353 `idstatut` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 2756 3354 `statut_libelle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2757 3355 `statut_libelle_opac` varchar(255) COLLATE utf8_unicode_ci DEFAULT '', … … 2764 3362 PRIMARY KEY (`idstatut`), 2765 3363 KEY `statusdoc_owner` (`statusdoc_owner`) 2766 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=15 ; 2767 2768 -- 2769 -- Volcar la base de datos para la tabla `docs_statut` 2770 -- 2771 2772 INSERT INTO `docs_statut` (`idstatut`, `statut_libelle`, `statut_libelle_opac`, `pret_flag`, `statusdoc_codage_import`, `statusdoc_owner`, `transfert_flag`, `statut_visible_opac`, `statut_allow_resa`) VALUES 2773 (1, 'Documento en buen estado', '', 1, '', 0, 0, 1, 1), 2774 (2, 'En curso de importación/adquisición', '', 0, '', 0, 1, 1, 0), 2775 (11, 'Deteriorado', '', 0, '', 0, 1, 1, 0), 2776 (12, 'Perdido', '', 0, '', 0, 1, 1, 0), 2777 (13, 'Consulta en sala', '', 0, '', 0, 1, 1, 0), 2778 (14, 'En depósito', '', 0, '', 0, 1, 1, 0); 2779 2780 -- -------------------------------------------------------- 2781 2782 2783 -- 2784 -- Estructura de tabla para la tabla `docs_type` 3364 ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3365 /*!40101 SET character_set_client = @saved_cs_client */; 3366 3367 -- 3368 -- Dumping data for table `docs_statut` 3369 -- 3370 3371 LOCK TABLES `docs_statut` WRITE; 3372 /*!40000 ALTER TABLE `docs_statut` DISABLE KEYS */; 3373 INSERT INTO `docs_statut` VALUES (1,'Documento en buen estado','',1,'',0,0,1,1),(2,'En curso de importación/adquisición','',0,'',0,1,1,0),(11,'Deteriorado','',0,'',0,1,1,0),(12,'Perdido','',0,'',0,1,1,0),(13,'Consulta en sala','',0,'',0,1,1,0),(14,'En depósito','',0,'',0,1,1,0); 3374 /*!40000 ALTER TABLE `docs_statut` ENABLE KEYS */; 3375 UNLOCK TABLES; 3376 3377 -- 3378 -- Table structure for table `docs_type` 2785 3379 -- 2786 3380 2787 3381 DROP TABLE IF EXISTS `docs_type`; 2788 CREATE TABLE IF NOT EXISTS `docs_type` ( 2789 `idtyp_doc` int(5) unsigned NOT NULL AUTO_INCREMENT, 3382 /*!40101 SET @saved_cs_client = @@character_set_client */; 3383 /*!40101 SET character_set_client = utf8 */; 3384 CREATE TABLE `docs_type` ( 3385 `idtyp_doc` int(5) unsigned NOT NULL AUTO_INCREMENT, 2790 3386 `tdoc_libelle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2791 3387 `duree_pret` smallint(6) NOT NULL DEFAULT '31', … … 2796 3392 `short_loan_duration` int(6) unsigned NOT NULL DEFAULT '1', 2797 3393 PRIMARY KEY (`idtyp_doc`) 2798 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=19 ; 2799 2800 -- 2801 -- Volcar la base de datos para la tabla `docs_type` 2802 -- 2803 2804 INSERT INTO `docs_type` (`idtyp_doc`, `tdoc_libelle`, `duree_pret`, `duree_resa`, `tdoc_owner`, `tdoc_codage_import`, `tarif_pret`, `short_loan_duration`) VALUES 2805 (1, 'Libro', 14, 15, 2, '', '0.00', 1), 2806 (12, 'Cinta de vídeo', 14, 15, 2, '', '0.00', 1), 2807 (13, 'CD audio', 14, 15, 2, '', '0.00', 1), 2808 (14, 'DVD', 5, 15, 2, '', '0.00', 1), 2809 (15, 'Obra de arte', 5, 15, 2, '', '0.00', 1), 2810 (16, 'Tarjetas y planos', 31, 15, 2, '', '0.00', 1), 2811 (17, 'Cederrones', 10, 5, 2, '', '0.00', 1), 2812 (18, 'Publicaciones peródicas', 8, 5, 0, '', '0.00', 1); 2813 2814 -- -------------------------------------------------------- 2815 2816 2817 -- 2818 -- Estructura de tabla para la tabla `docsloc_section` 3394 ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3395 /*!40101 SET character_set_client = @saved_cs_client */; 3396 3397 -- 3398 -- Dumping data for table `docs_type` 3399 -- 3400 3401 LOCK TABLES `docs_type` WRITE; 3402 /*!40000 ALTER TABLE `docs_type` DISABLE KEYS */; 3403 INSERT INTO `docs_type` VALUES (1,'Libro',14,15,2,'',0.00,1),(12,'Cinta de vÃÂdeo',14,15,2,'',0.00,1),(13,'CD audio',14,15,2,'',0.00,1),(14,'DVD',5,15,2,'',0.00,1),(15,'Obra de arte',5,15,2,'',0.00,1),(16,'Tarjetas y planos',31,15,2,'',0.00,1),(17,'Cederrones',10,5,2,'',0.00,1),(18,'Publicaciones peródicas',8,5,0,'',0.00,1); 3404 /*!40000 ALTER TABLE `docs_type` ENABLE KEYS */; 3405 UNLOCK TABLES; 3406 3407 -- 3408 -- Table structure for table `docsloc_section` 2819 3409 -- 2820 3410 2821 3411 DROP TABLE IF EXISTS `docsloc_section`; 2822 CREATE TABLE IF NOT EXISTS `docsloc_section` ( 2823 `num_section` int(5) unsigned NOT NULL DEFAULT '0', 3412 /*!40101 SET @saved_cs_client = @@character_set_client */; 3413 /*!40101 SET character_set_client = utf8 */; 3414 CREATE TABLE `docsloc_section` ( 3415 `num_section` int(5) unsigned NOT NULL DEFAULT '0', 2824 3416 `num_location` int(5) unsigned NOT NULL DEFAULT '0', 2825 3417 `num_pclass` int(10) NOT NULL DEFAULT '0', 2826 3418 PRIMARY KEY (`num_section`,`num_location`) 2827 3419 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2828 2829 -- 2830 -- Volcar la base de datos para la tabla `docsloc_section` 2831 -- 2832 2833 INSERT INTO `docsloc_section` (`num_section`, `num_location`, `num_pclass`) VALUES 2834 (10, 1, 0), 2835 (10, 7, 0), 2836 (11, 1, 0), 2837 (11, 7, 0), 2838 (12, 1, 0), 2839 (12, 7, 0), 2840 (13, 1, 0), 2841 (13, 7, 0), 2842 (16, 1, 0), 2843 (16, 7, 0), 2844 (17, 1, 0), 2845 (17, 7, 0), 2846 (18, 1, 0), 2847 (18, 7, 0), 2848 (19, 1, 0), 2849 (19, 7, 0), 2850 (20, 1, 0), 2851 (20, 7, 0), 2852 (21, 1, 0), 2853 (21, 7, 0), 2854 (23, 1, 0), 2855 (23, 7, 0), 2856 (24, 1, 0), 2857 (24, 7, 0), 2858 (25, 1, 0), 2859 (25, 7, 0), 2860 (26, 1, 0), 2861 (26, 7, 0); 2862 2863 -- -------------------------------------------------------- 2864 2865 -- 2866 -- Estructura de tabla para la tabla `dsi_archive` 3420 /*!40101 SET character_set_client = @saved_cs_client */; 3421 3422 -- 3423 -- Dumping data for table `docsloc_section` 3424 -- 3425 3426 LOCK TABLES `docsloc_section` WRITE; 3427 /*!40000 ALTER TABLE `docsloc_section` DISABLE KEYS */; 3428 INSERT INTO `docsloc_section` VALUES (10,1,0),(10,7,0),(11,1,0),(11,7,0),(12,1,0),(12,7,0),(13,1,0),(13,7,0),(16,1,0),(16,7,0),(17,1,0),(17,7,0),(18,1,0),(18,7,0),(19,1,0),(19,7,0),(20,1,0),(20,7,0),(21,1,0),(21,7,0),(23,1,0),(23,7,0),(24,1,0),(24,7,0),(25,1,0),(25,7,0),(26,1,0),(26,7,0); 3429 /*!40000 ALTER TABLE `docsloc_section` ENABLE KEYS */; 3430 UNLOCK TABLES; 3431 3432 -- 3433 -- Table structure for table `docwatch_categories` 3434 -- 3435 3436 DROP TABLE IF EXISTS `docwatch_categories`; 3437 /*!40101 SET @saved_cs_client = @@character_set_client */; 3438 /*!40101 SET character_set_client = utf8 */; 3439 CREATE TABLE `docwatch_categories` ( 3440 `id_category` int(10) unsigned NOT NULL AUTO_INCREMENT, 3441 `category_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3442 `category_num_parent` int(10) unsigned NOT NULL DEFAULT '0', 3443 PRIMARY KEY (`id_category`) 3444 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3445 /*!40101 SET character_set_client = @saved_cs_client */; 3446 3447 -- 3448 -- Dumping data for table `docwatch_categories` 3449 -- 3450 3451 LOCK TABLES `docwatch_categories` WRITE; 3452 /*!40000 ALTER TABLE `docwatch_categories` DISABLE KEYS */; 3453 /*!40000 ALTER TABLE `docwatch_categories` ENABLE KEYS */; 3454 UNLOCK TABLES; 3455 3456 -- 3457 -- Table structure for table `docwatch_datasources` 3458 -- 3459 3460 DROP TABLE IF EXISTS `docwatch_datasources`; 3461 /*!40101 SET @saved_cs_client = @@character_set_client */; 3462 /*!40101 SET character_set_client = utf8 */; 3463 CREATE TABLE `docwatch_datasources` ( 3464 `id_datasource` int(10) unsigned NOT NULL AUTO_INCREMENT, 3465 `datasource_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3466 `datasource_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3467 `datasource_ttl` int(10) unsigned NOT NULL DEFAULT '0', 3468 `datasource_last_date` datetime DEFAULT NULL, 3469 `datasource_parameters` mediumtext COLLATE utf8_unicode_ci NOT NULL, 3470 `datasource_num_category` int(10) unsigned NOT NULL DEFAULT '0', 3471 `datasource_default_interesting` int(10) unsigned NOT NULL DEFAULT '0', 3472 `datasource_clean_html` int(10) unsigned NOT NULL DEFAULT '1', 3473 `datasource_num_watch` int(10) unsigned NOT NULL DEFAULT '0', 3474 PRIMARY KEY (`id_datasource`), 3475 KEY `i_docwatch_datasource_title` (`datasource_title`) 3476 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3477 /*!40101 SET character_set_client = @saved_cs_client */; 3478 3479 -- 3480 -- Dumping data for table `docwatch_datasources` 3481 -- 3482 3483 LOCK TABLES `docwatch_datasources` WRITE; 3484 /*!40000 ALTER TABLE `docwatch_datasources` DISABLE KEYS */; 3485 /*!40000 ALTER TABLE `docwatch_datasources` ENABLE KEYS */; 3486 UNLOCK TABLES; 3487 3488 -- 3489 -- Table structure for table `docwatch_items` 3490 -- 3491 3492 DROP TABLE IF EXISTS `docwatch_items`; 3493 /*!40101 SET @saved_cs_client = @@character_set_client */; 3494 /*!40101 SET character_set_client = utf8 */; 3495 CREATE TABLE `docwatch_items` ( 3496 `id_item` int(10) unsigned NOT NULL AUTO_INCREMENT, 3497 `item_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3498 `item_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3499 `item_summary` mediumtext COLLATE utf8_unicode_ci NOT NULL, 3500 `item_content` mediumtext COLLATE utf8_unicode_ci NOT NULL, 3501 `item_added_date` datetime DEFAULT NULL, 3502 `item_publication_date` datetime DEFAULT NULL, 3503 `item_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3504 `item_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3505 `item_logo_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3506 `item_status` int(10) unsigned NOT NULL DEFAULT '0', 3507 `item_interesting` int(10) unsigned NOT NULL DEFAULT '0', 3508 `item_num_article` int(10) unsigned NOT NULL DEFAULT '0', 3509 `item_num_section` int(10) unsigned NOT NULL DEFAULT '0', 3510 `item_num_notice` int(10) unsigned NOT NULL DEFAULT '0', 3511 `item_num_datasource` int(10) unsigned NOT NULL DEFAULT '0', 3512 `item_num_watch` int(10) unsigned NOT NULL DEFAULT '0', 3513 PRIMARY KEY (`id_item`), 3514 KEY `i_docwatch_item_type` (`item_type`), 3515 KEY `i_docwatch_item_title` (`item_title`), 3516 KEY `i_docwatch_item_num_article` (`item_num_article`), 3517 KEY `i_docwatch_item_num_section` (`item_num_section`), 3518 KEY `i_docwatch_item_num_notice` (`item_num_notice`), 3519 KEY `i_docwatch_item_num_watch` (`item_num_watch`) 3520 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3521 /*!40101 SET character_set_client = @saved_cs_client */; 3522 3523 -- 3524 -- Dumping data for table `docwatch_items` 3525 -- 3526 3527 LOCK TABLES `docwatch_items` WRITE; 3528 /*!40000 ALTER TABLE `docwatch_items` DISABLE KEYS */; 3529 /*!40000 ALTER TABLE `docwatch_items` ENABLE KEYS */; 3530 UNLOCK TABLES; 3531 3532 -- 3533 -- Table structure for table `docwatch_items_descriptors` 3534 -- 3535 3536 DROP TABLE IF EXISTS `docwatch_items_descriptors`; 3537 /*!40101 SET @saved_cs_client = @@character_set_client */; 3538 /*!40101 SET character_set_client = utf8 */; 3539 CREATE TABLE `docwatch_items_descriptors` ( 3540 `num_item` int(10) unsigned NOT NULL DEFAULT '0', 3541 `num_noeud` int(10) unsigned NOT NULL DEFAULT '0', 3542 PRIMARY KEY (`num_item`,`num_noeud`) 3543 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3544 /*!40101 SET character_set_client = @saved_cs_client */; 3545 3546 -- 3547 -- Dumping data for table `docwatch_items_descriptors` 3548 -- 3549 3550 LOCK TABLES `docwatch_items_descriptors` WRITE; 3551 /*!40000 ALTER TABLE `docwatch_items_descriptors` DISABLE KEYS */; 3552 /*!40000 ALTER TABLE `docwatch_items_descriptors` ENABLE KEYS */; 3553 UNLOCK TABLES; 3554 3555 -- 3556 -- Table structure for table `docwatch_items_tags` 3557 -- 3558 3559 DROP TABLE IF EXISTS `docwatch_items_tags`; 3560 /*!40101 SET @saved_cs_client = @@character_set_client */; 3561 /*!40101 SET character_set_client = utf8 */; 3562 CREATE TABLE `docwatch_items_tags` ( 3563 `num_item` int(10) unsigned NOT NULL DEFAULT '0', 3564 `num_tag` int(10) unsigned NOT NULL DEFAULT '0', 3565 PRIMARY KEY (`num_item`,`num_tag`) 3566 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3567 /*!40101 SET character_set_client = @saved_cs_client */; 3568 3569 -- 3570 -- Dumping data for table `docwatch_items_tags` 3571 -- 3572 3573 LOCK TABLES `docwatch_items_tags` WRITE; 3574 /*!40000 ALTER TABLE `docwatch_items_tags` DISABLE KEYS */; 3575 /*!40000 ALTER TABLE `docwatch_items_tags` ENABLE KEYS */; 3576 UNLOCK TABLES; 3577 3578 -- 3579 -- Table structure for table `docwatch_selectors` 3580 -- 3581 3582 DROP TABLE IF EXISTS `docwatch_selectors`; 3583 /*!40101 SET @saved_cs_client = @@character_set_client */; 3584 /*!40101 SET character_set_client = utf8 */; 3585 CREATE TABLE `docwatch_selectors` ( 3586 `id_selector` int(10) unsigned NOT NULL AUTO_INCREMENT, 3587 `selector_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3588 `selector_num_datasource` int(10) unsigned NOT NULL DEFAULT '0', 3589 `selector_parameters` mediumtext COLLATE utf8_unicode_ci NOT NULL, 3590 PRIMARY KEY (`id_selector`) 3591 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3592 /*!40101 SET character_set_client = @saved_cs_client */; 3593 3594 -- 3595 -- Dumping data for table `docwatch_selectors` 3596 -- 3597 3598 LOCK TABLES `docwatch_selectors` WRITE; 3599 /*!40000 ALTER TABLE `docwatch_selectors` DISABLE KEYS */; 3600 /*!40000 ALTER TABLE `docwatch_selectors` ENABLE KEYS */; 3601 UNLOCK TABLES; 3602 3603 -- 3604 -- Table structure for table `docwatch_tags` 3605 -- 3606 3607 DROP TABLE IF EXISTS `docwatch_tags`; 3608 /*!40101 SET @saved_cs_client = @@character_set_client */; 3609 /*!40101 SET character_set_client = utf8 */; 3610 CREATE TABLE `docwatch_tags` ( 3611 `id_tag` int(10) unsigned NOT NULL AUTO_INCREMENT, 3612 `tag_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3613 PRIMARY KEY (`id_tag`) 3614 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3615 /*!40101 SET character_set_client = @saved_cs_client */; 3616 3617 -- 3618 -- Dumping data for table `docwatch_tags` 3619 -- 3620 3621 LOCK TABLES `docwatch_tags` WRITE; 3622 /*!40000 ALTER TABLE `docwatch_tags` DISABLE KEYS */; 3623 /*!40000 ALTER TABLE `docwatch_tags` ENABLE KEYS */; 3624 UNLOCK TABLES; 3625 3626 -- 3627 -- Table structure for table `docwatch_watches` 3628 -- 3629 3630 DROP TABLE IF EXISTS `docwatch_watches`; 3631 /*!40101 SET @saved_cs_client = @@character_set_client */; 3632 /*!40101 SET character_set_client = utf8 */; 3633 CREATE TABLE `docwatch_watches` ( 3634 `id_watch` int(10) unsigned NOT NULL AUTO_INCREMENT, 3635 `watch_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3636 `watch_owner` int(10) unsigned NOT NULL DEFAULT '0', 3637 `watch_allowed_users` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3638 `watch_num_category` int(10) unsigned NOT NULL DEFAULT '0', 3639 `watch_last_date` datetime DEFAULT NULL, 3640 `watch_ttl` int(10) unsigned NOT NULL DEFAULT '0', 3641 `watch_desc` text COLLATE utf8_unicode_ci NOT NULL, 3642 `watch_logo_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3643 `watch_record_default_type` char(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'a', 3644 `watch_record_default_status` int(10) unsigned NOT NULL DEFAULT '0', 3645 `watch_article_default_parent` int(10) unsigned NOT NULL DEFAULT '0', 3646 `watch_article_default_content_type` int(10) unsigned NOT NULL DEFAULT '0', 3647 `watch_article_default_publication_status` int(10) unsigned NOT NULL DEFAULT '0', 3648 `watch_section_default_parent` int(10) unsigned NOT NULL DEFAULT '0', 3649 `watch_section_default_content_type` int(10) unsigned NOT NULL DEFAULT '0', 3650 `watch_section_default_publication_status` int(10) unsigned NOT NULL DEFAULT '0', 3651 PRIMARY KEY (`id_watch`), 3652 KEY `i_docwatch_watch_title` (`watch_title`) 3653 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3654 /*!40101 SET character_set_client = @saved_cs_client */; 3655 3656 -- 3657 -- Dumping data for table `docwatch_watches` 3658 -- 3659 3660 LOCK TABLES `docwatch_watches` WRITE; 3661 /*!40000 ALTER TABLE `docwatch_watches` DISABLE KEYS */; 3662 /*!40000 ALTER TABLE `docwatch_watches` ENABLE KEYS */; 3663 UNLOCK TABLES; 3664 3665 -- 3666 -- Table structure for table `dsi_archive` 2867 3667 -- 2868 3668 2869 3669 DROP TABLE IF EXISTS `dsi_archive`; 2870 CREATE TABLE IF NOT EXISTS `dsi_archive` ( 2871 `num_banette_arc` int(10) unsigned NOT NULL DEFAULT '0', 3670 /*!40101 SET @saved_cs_client = @@character_set_client */; 3671 /*!40101 SET character_set_client = utf8 */; 3672 CREATE TABLE `dsi_archive` ( 3673 `num_banette_arc` int(10) unsigned NOT NULL DEFAULT '0', 2872 3674 `num_notice_arc` int(10) unsigned NOT NULL DEFAULT '0', 2873 3675 `date_diff_arc` date NOT NULL DEFAULT '0000-00-00', 2874 3676 PRIMARY KEY (`num_banette_arc`,`num_notice_arc`,`date_diff_arc`) 2875 3677 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 2876 2877 -- 2878 -- Volcar la base de datos para la tabla `dsi_archive` 2879 -- 2880 2881 2882 -- -------------------------------------------------------- 2883 2884 -- 2885 -- Estructura de tabla para la tabla `editions_states` 3678 /*!40101 SET character_set_client = @saved_cs_client */; 3679 3680 -- 3681 -- Dumping data for table `dsi_archive` 3682 -- 3683 3684 LOCK TABLES `dsi_archive` WRITE; 3685 /*!40000 ALTER TABLE `dsi_archive` DISABLE KEYS */; 3686 /*!40000 ALTER TABLE `dsi_archive` ENABLE KEYS */; 3687 UNLOCK TABLES; 3688 3689 -- 3690 -- Table structure for table `editions_states` 2886 3691 -- 2887 3692 2888 3693 DROP TABLE IF EXISTS `editions_states`; 2889 CREATE TABLE IF NOT EXISTS `editions_states` ( 3694 /*!40101 SET @saved_cs_client = @@character_set_client */; 3695 /*!40101 SET character_set_client = utf8 */; 3696 CREATE TABLE `editions_states` ( 2890 3697 `id_editions_state` int(10) unsigned NOT NULL AUTO_INCREMENT, 2891 3698 `editions_state_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2896 3703 `editions_state_fieldsparams` text COLLATE utf8_unicode_ci NOT NULL, 2897 3704 PRIMARY KEY (`id_editions_state`) 2898 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2899 2900 -- 2901 -- Volcar la base de datos para la tabla `editions_states` 2902 -- 2903 2904 2905 -- -------------------------------------------------------- 2906 2907 -- 2908 -- Estructura de tabla para la tabla `empr` 3705 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3706 /*!40101 SET character_set_client = @saved_cs_client */; 3707 3708 -- 3709 -- Dumping data for table `editions_states` 3710 -- 3711 3712 LOCK TABLES `editions_states` WRITE; 3713 /*!40000 ALTER TABLE `editions_states` DISABLE KEYS */; 3714 /*!40000 ALTER TABLE `editions_states` ENABLE KEYS */; 3715 UNLOCK TABLES; 3716 3717 -- 3718 -- Table structure for table `empr` 2909 3719 -- 2910 3720 2911 3721 DROP TABLE IF EXISTS `empr`; 2912 CREATE TABLE IF NOT EXISTS `empr` ( 2913 `id_empr` int(10) unsigned NOT NULL AUTO_INCREMENT, 3722 /*!40101 SET @saved_cs_client = @@character_set_client */; 3723 /*!40101 SET character_set_client = utf8 */; 3724 CREATE TABLE `empr` ( 3725 `id_empr` int(10) unsigned NOT NULL AUTO_INCREMENT, 2914 3726 `empr_cb` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2915 3727 `empr_nom` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 2932 3744 `empr_login` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2933 3745 `empr_password` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3746 `empr_password_is_encrypted` int(1) NOT NULL DEFAULT '0', 2934 3747 `empr_digest` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2935 3748 `empr_date_adhesion` date DEFAULT NULL, … … 2957 3770 KEY `i_empr_statut` (`empr_statut`), 2958 3771 KEY `i_empr_typabt` (`type_abt`) 2959 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 2960 2961 -- 2962 -- Volcar la base de datos para la tabla `empr` 2963 -- 2964 2965 2966 -- -------------------------------------------------------- 2967 2968 -- 2969 -- Estructura de tabla para la tabla `empr_caddie` 3772 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3773 /*!40101 SET character_set_client = @saved_cs_client */; 3774 3775 -- 3776 -- Dumping data for table `empr` 3777 -- 3778 3779 LOCK TABLES `empr` WRITE; 3780 /*!40000 ALTER TABLE `empr` DISABLE KEYS */; 3781 /*!40000 ALTER TABLE `empr` ENABLE KEYS */; 3782 UNLOCK TABLES; 3783 3784 -- 3785 -- Table structure for table `empr_caddie` 2970 3786 -- 2971 3787 2972 3788 DROP TABLE IF EXISTS `empr_caddie`; 2973 CREATE TABLE IF NOT EXISTS `empr_caddie` ( 3789 /*!40101 SET @saved_cs_client = @@character_set_client */; 3790 /*!40101 SET character_set_client = utf8 */; 3791 CREATE TABLE `empr_caddie` ( 2974 3792 `idemprcaddie` int(8) unsigned NOT NULL AUTO_INCREMENT, 2975 3793 `name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, 2976 3794 `comment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 2977 3795 `autorisations` mediumtext COLLATE utf8_unicode_ci, 3796 `empr_caddie_classement` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 2978 3797 PRIMARY KEY (`idemprcaddie`) 2979 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; 2980 2981 -- 2982 -- Volcar la base de datos para la tabla `empr_caddie` 2983 -- 2984 2985 INSERT INTO `empr_caddie` (`idemprcaddie`, `name`, `comment`, `autorisations`) VALUES 2986 (1, 'Panier de lecteurs', '', '1'); 2987 2988 -- -------------------------------------------------------- 2989 2990 -- 2991 -- Estructura de tabla para la tabla `empr_caddie_content` 3798 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3799 /*!40101 SET character_set_client = @saved_cs_client */; 3800 3801 -- 3802 -- Dumping data for table `empr_caddie` 3803 -- 3804 3805 LOCK TABLES `empr_caddie` WRITE; 3806 /*!40000 ALTER TABLE `empr_caddie` DISABLE KEYS */; 3807 INSERT INTO `empr_caddie` VALUES (1,'Panier de lecteurs','','1',''); 3808 /*!40000 ALTER TABLE `empr_caddie` ENABLE KEYS */; 3809 UNLOCK TABLES; 3810 3811 -- 3812 -- Table structure for table `empr_caddie_content` 2992 3813 -- 2993 3814 2994 3815 DROP TABLE IF EXISTS `empr_caddie_content`; 2995 CREATE TABLE IF NOT EXISTS `empr_caddie_content` ( 3816 /*!40101 SET @saved_cs_client = @@character_set_client */; 3817 /*!40101 SET character_set_client = utf8 */; 3818 CREATE TABLE `empr_caddie_content` ( 2996 3819 `empr_caddie_id` int(8) unsigned NOT NULL DEFAULT '0', 2997 3820 `object_id` int(10) unsigned NOT NULL DEFAULT '0', … … 3000 3823 KEY `object_id` (`object_id`) 3001 3824 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3002 3003 -- 3004 -- Volcar la base de datos para la tabla `empr_caddie_content` 3005 -- 3006 3007 3008 -- -------------------------------------------------------- 3009 3010 -- 3011 -- Estructura de tabla para la tabla `empr_caddie_procs` 3825 /*!40101 SET character_set_client = @saved_cs_client */; 3826 3827 -- 3828 -- Dumping data for table `empr_caddie_content` 3829 -- 3830 3831 LOCK TABLES `empr_caddie_content` WRITE; 3832 /*!40000 ALTER TABLE `empr_caddie_content` DISABLE KEYS */; 3833 /*!40000 ALTER TABLE `empr_caddie_content` ENABLE KEYS */; 3834 UNLOCK TABLES; 3835 3836 -- 3837 -- Table structure for table `empr_caddie_procs` 3012 3838 -- 3013 3839 3014 3840 DROP TABLE IF EXISTS `empr_caddie_procs`; 3015 CREATE TABLE IF NOT EXISTS `empr_caddie_procs` ( 3016 `idproc` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3841 /*!40101 SET @saved_cs_client = @@character_set_client */; 3842 /*!40101 SET character_set_client = utf8 */; 3843 CREATE TABLE `empr_caddie_procs` ( 3844 `idproc` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3017 3845 `type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'SELECT', 3018 3846 `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 3022 3850 `parameters` text COLLATE utf8_unicode_ci, 3023 3851 PRIMARY KEY (`idproc`) 3024 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=23 ; 3025 3026 -- 3027 -- Volcar la base de datos para la tabla `empr_caddie_procs` 3028 -- 3029 3030 INSERT INTO `empr_caddie_procs` (`idproc`, `type`, `name`, `requete`, `comment`, `autorisations`, `parameters`) VALUES 3031 (1, 'ACTION', 'Changement de localisation des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f6c6f636174696f6e3d2721216e65775f6c6f636174696f6e2121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_location" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle localisation]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idlocation, location_libelle from docs_location order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3032 (2, 'ACTION', 'Changement de catégorie des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f63617465673d2721216e65775f63617465672121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_categ" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle catégorie]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select id_categ_empr, libelle from empr_categ order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3033 (3, 'ACTION', 'Changement de ville des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f76696c6c653d2721216e65775f76696c6c652121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_ville" MANDATORY="no">\n <ALIAS><![CDATA[Nouvelle Ville]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3034 (4, 'ACTION', 'Changement de code postal des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f63703d2721216e65775f63702121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_cp" MANDATORY="no">\n <ALIAS><![CDATA[Nouveau code postal]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3035 (5, 'ACTION', 'Changement de pays des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f706179733d2721216e65775f706179732121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_pays" MANDATORY="no">\n <ALIAS><![CDATA[Nouveau pays]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3036 (6, 'ACTION', 'Changement de statut des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f7374617475743d2721216e6f75766561755f7374617475742121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="nouveau_statut" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from empr_statut order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3037 (7, 'ACTION', 'Changement de code statistique des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f636f6465737461743d2721216e65775f636f6465737461742121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_codestat" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau code statistique]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select idcode, libelle from empr_codestat order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3038 (8, 'ACTION', 'Changement de mot de passe des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f70617373776f72643d2721216e65775f70617373776f72642121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_password" MANDATORY="no">\n <ALIAS><![CDATA[Nouveau mot de passe]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3039 (9, 'ACTION', 'Changement de date de début d''adhésion des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f646174655f6164686573696f6e3d2721216e65775f646174655f6164686573696f6e2121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_date_adhesion" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle date de début d''adhésion]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR="date_box"></OPTIONS> \n </FIELD>\n</FIELDS>'), 3040 (10, 'ACTION', 'Changement de date de fin d''adhésion des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f646174655f65787069726174696f6e3d2721216e65775f646174655f65787069726174696f6e2121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_date_expiration" MANDATORY="yes">\n <ALIAS><![CDATA[Nouvelle date de fin d''adhésion]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR="date_box"></OPTIONS> \n </FIELD>\n</FIELDS>'), 3041 (11, 'ACTION', 'Changement de sexe des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f736578653d21216e65775f7365786521212077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_sexe" MANDATORY="yes">\n <ALIAS><![CDATA[Nouveau sexe]]></ALIAS>\n <TYPE>list</TYPE>\n<OPTIONS FOR="list">\r\n <MULTIPLE>no</MULTIPLE>\r\n <ITEMS>\r\n <ITEM VALUE="1"><![CDATA[Masculin]]></ITEM>\r\n <ITEM VALUE="2"><![CDATA[Féminin]]></ITEM>\r\n <ITEM VALUE="0"><![CDATA[Indéterminé]]></ITEM>\r\n </ITEMS>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3042 (14, 'ACTION', 'Changement de message des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f6d73673d2721216e65775f6d73672121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_msg" MANDATORY="no">\n <ALIAS><![CDATA[Nouveau message]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3043 (16, 'SELECT', 'Sélection / pointage des lecteurs sans email', 0x73656c6563742069645f656d7072206173206f626a6563745f69642066726f6d20656d7072207768657265207472696d28656d70725f6d61696c293d2727, '', ' 1 ', NULL), 3044 (18, 'ACTION', 'Abonnement des lecteurs d''un panier à une bannette publique (DSI)', 0x696e7365727420696e746f2062616e6e657474655f61626f6e20286e756d5f62616e6e657474652c206e756d5f656d70722c206163746966292073656c65637420212162616e6e6574746521212c2069645f656d70722c20312066726f6d20656d70722077686572652069645f656d707220696e202843414444494528454d5052292920, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="bannette" MANDATORY="yes">\n <ALIAS><![CDATA[bannette]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select id_bannette, nom_bannette from bannettes where proprio_bannette=0 order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3045 (19, 'ACTION', 'Désabonnement des lecteurs d''un panier d''une bannette publique (DSI)', 0x64656c6574652066726f6d2062616e6e657474655f61626f6e207768657265206e756d5f62616e6e657474653d212162616e6e65747465212120616e64206e756d5f656d70723d69645f656d707220616e642061637469663d312077686572652069645f656d707220696e202843414444494528454d5052292920, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="bannette" MANDATORY="yes">\n <ALIAS><![CDATA[bannette]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select id_bannette, nom_bannette from bannettes where proprio_bannette=0 order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=""><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3046 (21, 'ACTION', 'Changement de profession des lecteurs d''un panier', 0x75706461746520656d70722073657420656d70725f70726f663d2721216e65775f70726f662121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_prof" MANDATORY="no">\n <ALIAS><![CDATA[Nouvelle profession]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR="text">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'), 3047 (22, 'ACTION', 'Changement de type d''abonnement des lecteurs d''un panier', 0x75706461746520656d70722073657420747970655f6162743d2721216e65775f747970655f6162742121272077686572652069645f656d707220696e202843414444494528454d50522929, '', ' 1 ', '<?xml version="1.0" encoding="iso-8859-1"?>\n<FIELDS>\n <FIELD NAME="new_type_abt" MANDATORY="no">\n <ALIAS><![CDATA[Nouveau type d''abonnement]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR="query_list">\r\n <QUERY><![CDATA[select id_type_abt, type_abt_libelle from type_abts order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE="0"><![CDATA[Non défini]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'); 3048 3049 -- -------------------------------------------------------- 3050 3051 -- 3052 -- Estructura de tabla para la tabla `empr_categ` 3852 ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3853 /*!40101 SET character_set_client = @saved_cs_client */; 3854 3855 -- 3856 -- Dumping data for table `empr_caddie_procs` 3857 -- 3858 3859 LOCK TABLES `empr_caddie_procs` WRITE; 3860 /*!40000 ALTER TABLE `empr_caddie_procs` DISABLE KEYS */; 3861 INSERT INTO `empr_caddie_procs` VALUES (1,'ACTION','Changement de localisation des lecteurs d\'un panier','update empr set empr_location=\'!!new_location!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_location\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle localisation]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idlocation, location_libelle from docs_location order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(2,'ACTION','Changement de catégorie des lecteurs d\'un panier','update empr set empr_categ=\'!!new_categ!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_categ\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle catégorie]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select id_categ_empr, libelle from empr_categ order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(3,'ACTION','Changement de ville des lecteurs d\'un panier','update empr set empr_ville=\'!!new_ville!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_ville\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouvelle Ville]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(4,'ACTION','Changement de code postal des lecteurs d\'un panier','update empr set empr_cp=\'!!new_cp!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_cp\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouveau code postal]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(5,'ACTION','Changement de pays des lecteurs d\'un panier','update empr set empr_pays=\'!!new_pays!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_pays\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouveau pays]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(6,'ACTION','Changement de statut des lecteurs d\'un panier','update empr set empr_statut=\'!!nouveau_statut!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"nouveau_statut\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau statut]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idstatut, statut_libelle from empr_statut order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(7,'ACTION','Changement de code statistique des lecteurs d\'un panier','update empr set empr_codestat=\'!!new_codestat!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_codestat\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau code statistique]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select idcode, libelle from empr_codestat order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(8,'ACTION','Changement de mot de passe des lecteurs d\'un panier','update empr set empr_password=\'!!new_password!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_password\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouveau mot de passe]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>10</SIZE>\r\n <MAXSIZE>10</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(9,'ACTION','Changement de date de début d\'adhésion des lecteurs d\'un panier','update empr set empr_date_adhesion=\'!!new_date_adhesion!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_date_adhesion\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle date de début d\'adhésion]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR=\"date_box\"></OPTIONS> \n </FIELD>\n</FIELDS>'),(10,'ACTION','Changement de date de fin d\'adhésion des lecteurs d\'un panier','update empr set empr_date_expiration=\'!!new_date_expiration!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_date_expiration\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouvelle date de fin d\'adhésion]]></ALIAS>\n <TYPE>date_box</TYPE>\n<OPTIONS FOR=\"date_box\"></OPTIONS> \n </FIELD>\n</FIELDS>'),(11,'ACTION','Changement de sexe des lecteurs d\'un panier','update empr set empr_sexe=!!new_sexe!! where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_sexe\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[Nouveau sexe]]></ALIAS>\n <TYPE>list</TYPE>\n<OPTIONS FOR=\"list\">\r\n <MULTIPLE>no</MULTIPLE>\r\n <ITEMS>\r\n <ITEM VALUE=\"1\"><![CDATA[Masculin]]></ITEM>\r\n <ITEM VALUE=\"2\"><![CDATA[Féminin]]></ITEM>\r\n <ITEM VALUE=\"0\"><![CDATA[Indéterminé]]></ITEM>\r\n </ITEMS>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(14,'ACTION','Changement de message des lecteurs d\'un panier','update empr set empr_msg=\'!!new_msg!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_msg\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouveau message]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(16,'SELECT','Sélection / pointage des lecteurs sans email','select id_empr as object_id from empr where trim(empr_mail)=\'\'','',' 1 ',NULL),(18,'ACTION','Abonnement des lecteurs d\'un panier àune bannette publique (DSI)','insert into bannette_abon (num_bannette, num_empr, actif) select !!bannette!!, id_empr, 1 from empr where id_empr in (CADDIE(EMPR)) ','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"bannette\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[bannette]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select id_bannette, nom_bannette from bannettes where proprio_bannette=0 order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(19,'ACTION','Désabonnement des lecteurs d\'un panier d\'une bannette publique (DSI)','delete from bannette_abon where num_bannette=!!bannette!! and num_empr=id_empr and actif=1 where id_empr in (CADDIE(EMPR)) ','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"bannette\" MANDATORY=\"yes\">\n <ALIAS><![CDATA[bannette]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select id_bannette, nom_bannette from bannettes where proprio_bannette=0 order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"\"><![CDATA[]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(21,'ACTION','Changement de profession des lecteurs d\'un panier','update empr set empr_prof=\'!!new_prof!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_prof\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouvelle profession]]></ALIAS>\n <TYPE>text</TYPE>\n<OPTIONS FOR=\"text\">\r\n <SIZE>25</SIZE>\r\n <MAXSIZE>255</MAXSIZE>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'),(22,'ACTION','Changement de type d\'abonnement des lecteurs d\'un panier','update empr set type_abt=\'!!new_type_abt!!\' where id_empr in (CADDIE(EMPR))','',' 1 ','<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<FIELDS>\n <FIELD NAME=\"new_type_abt\" MANDATORY=\"no\">\n <ALIAS><![CDATA[Nouveau type d\'abonnement]]></ALIAS>\n <TYPE>query_list</TYPE>\n<OPTIONS FOR=\"query_list\">\r\n <QUERY><![CDATA[select id_type_abt, type_abt_libelle from type_abts order by 2]]></QUERY>\r\n <MULTIPLE>no</MULTIPLE>\r\n <UNSELECT_ITEM VALUE=\"0\"><![CDATA[Non défini]]></UNSELECT_ITEM>\r\n</OPTIONS>\n </FIELD>\n</FIELDS>'); 3862 /*!40000 ALTER TABLE `empr_caddie_procs` ENABLE KEYS */; 3863 UNLOCK TABLES; 3864 3865 -- 3866 -- Table structure for table `empr_categ` 3053 3867 -- 3054 3868 3055 3869 DROP TABLE IF EXISTS `empr_categ`; 3056 CREATE TABLE IF NOT EXISTS `empr_categ` ( 3870 /*!40101 SET @saved_cs_client = @@character_set_client */; 3871 /*!40101 SET character_set_client = utf8 */; 3872 CREATE TABLE `empr_categ` ( 3057 3873 `id_categ_empr` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3058 3874 `libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 3062 3878 `age_max` int(3) unsigned NOT NULL DEFAULT '0', 3063 3879 PRIMARY KEY (`id_categ_empr`) 3064 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=8 ; 3065 3066 -- 3067 -- Volcar la base de datos para la tabla `empr_categ` 3068 -- 3069 3070 INSERT INTO `empr_categ` (`id_categ_empr`, `libelle`, `duree_adhesion`, `tarif_abt`, `age_min`, `age_max`) VALUES 3071 (1, 'Niños', 365, '0.00', 0, 0), 3072 (2, 'Jubilados', 365, '0.00', 0, 0), 3073 (3, 'Empleados', 365, '0.00', 0, 0), 3074 (4, 'Sin empleo', 365, '0.00', 0, 0), 3075 (5, 'Alumnos de secundaria/Estudiantes', 365, '0.00', 0, 0), 3076 (6, 'Colegiales', 365, '0.00', 0, 0), 3077 (7, 'Adultos', 365, '0.00', 0, 0); 3078 3079 -- -------------------------------------------------------- 3080 3081 -- 3082 -- Estructura de tabla para la tabla `empr_codestat` 3880 ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3881 /*!40101 SET character_set_client = @saved_cs_client */; 3882 3883 -- 3884 -- Dumping data for table `empr_categ` 3885 -- 3886 3887 LOCK TABLES `empr_categ` WRITE; 3888 /*!40000 ALTER TABLE `empr_categ` DISABLE KEYS */; 3889 INSERT INTO `empr_categ` VALUES (1,'Niños',365,0.00,0,0),(2,'Jubilados',365,0.00,0,0),(3,'Empleados',365,0.00,0,0),(4,'Sin empleo',365,0.00,0,0),(5,'Alumnos de secundaria/Estudiantes',365,0.00,0,0),(6,'Colegiales',365,0.00,0,0),(7,'Adultos',365,0.00,0,0); 3890 /*!40000 ALTER TABLE `empr_categ` ENABLE KEYS */; 3891 UNLOCK TABLES; 3892 3893 -- 3894 -- Table structure for table `empr_codestat` 3083 3895 -- 3084 3896 3085 3897 DROP TABLE IF EXISTS `empr_codestat`; 3086 CREATE TABLE IF NOT EXISTS `empr_codestat` ( 3087 `idcode` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3898 /*!40101 SET @saved_cs_client = @@character_set_client */; 3899 /*!40101 SET character_set_client = utf8 */; 3900 CREATE TABLE `empr_codestat` ( 3901 `idcode` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3088 3902 `libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'DEFAULT', 3089 3903 PRIMARY KEY (`idcode`) 3090 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=8 ; 3091 3092 -- 3093 -- Volcar la base de datos para la tabla `empr_codestat` 3094 -- 3095 3096 INSERT INTO `empr_codestat` (`idcode`, `libelle`) VALUES 3097 (2, 'Comunidad de Municipios'), 3098 (3, 'Municipio'), 3099 (4, 'Departamento'), 3100 (5, 'Europa'), 3101 (6, 'Fuera de Europa'), 3102 (7, 'Francia'); 3103 3104 -- -------------------------------------------------------- 3105 3106 -- 3107 -- Estructura de tabla para la tabla `empr_custom` 3904 ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3905 /*!40101 SET character_set_client = @saved_cs_client */; 3906 3907 -- 3908 -- Dumping data for table `empr_codestat` 3909 -- 3910 3911 LOCK TABLES `empr_codestat` WRITE; 3912 /*!40000 ALTER TABLE `empr_codestat` DISABLE KEYS */; 3913 INSERT INTO `empr_codestat` VALUES (2,'Comunidad de Municipios'),(3,'Municipio'),(4,'Departamento'),(5,'Europa'),(6,'Fuera de Europa'),(7,'Francia'); 3914 /*!40000 ALTER TABLE `empr_codestat` ENABLE KEYS */; 3915 UNLOCK TABLES; 3916 3917 -- 3918 -- Table structure for table `empr_custom` 3108 3919 -- 3109 3920 3110 3921 DROP TABLE IF EXISTS `empr_custom`; 3111 CREATE TABLE IF NOT EXISTS `empr_custom` ( 3922 /*!40101 SET @saved_cs_client = @@character_set_client */; 3923 /*!40101 SET character_set_client = utf8 */; 3924 CREATE TABLE `empr_custom` ( 3112 3925 `idchamp` int(10) unsigned NOT NULL AUTO_INCREMENT, 3113 3926 `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 3125 3938 `opac_sort` int(11) NOT NULL DEFAULT '0', 3126 3939 PRIMARY KEY (`idchamp`) 3127 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 3128 3129 -- 3130 -- Volcar la base de datos para la tabla `empr_custom` 3131 -- 3132 3133 3134 -- -------------------------------------------------------- 3135 3136 -- 3137 -- Estructura de tabla para la tabla `empr_custom_lists` 3940 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3941 /*!40101 SET character_set_client = @saved_cs_client */; 3942 3943 -- 3944 -- Dumping data for table `empr_custom` 3945 -- 3946 3947 LOCK TABLES `empr_custom` WRITE; 3948 /*!40000 ALTER TABLE `empr_custom` DISABLE KEYS */; 3949 /*!40000 ALTER TABLE `empr_custom` ENABLE KEYS */; 3950 UNLOCK TABLES; 3951 3952 -- 3953 -- Table structure for table `empr_custom_lists` 3138 3954 -- 3139 3955 3140 3956 DROP TABLE IF EXISTS `empr_custom_lists`; 3141 CREATE TABLE IF NOT EXISTS `empr_custom_lists` ( 3957 /*!40101 SET @saved_cs_client = @@character_set_client */; 3958 /*!40101 SET character_set_client = utf8 */; 3959 CREATE TABLE `empr_custom_lists` ( 3142 3960 `empr_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 3143 3961 `empr_custom_list_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, … … 3147 3965 KEY `i_ecl_lv` (`empr_custom_list_value`) 3148 3966 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3149 3150 -- 3151 -- Volcar la base de datos para la tabla `empr_custom_lists` 3152 -- 3153 3154 3155 -- -------------------------------------------------------- 3156 3157 -- 3158 -- Estructura de tabla para la tabla `empr_custom_values` 3967 /*!40101 SET character_set_client = @saved_cs_client */; 3968 3969 -- 3970 -- Dumping data for table `empr_custom_lists` 3971 -- 3972 3973 LOCK TABLES `empr_custom_lists` WRITE; 3974 /*!40000 ALTER TABLE `empr_custom_lists` DISABLE KEYS */; 3975 /*!40000 ALTER TABLE `empr_custom_lists` ENABLE KEYS */; 3976 UNLOCK TABLES; 3977 3978 -- 3979 -- Table structure for table `empr_custom_values` 3159 3980 -- 3160 3981 3161 3982 DROP TABLE IF EXISTS `empr_custom_values`; 3162 CREATE TABLE IF NOT EXISTS `empr_custom_values` ( 3983 /*!40101 SET @saved_cs_client = @@character_set_client */; 3984 /*!40101 SET character_set_client = utf8 */; 3985 CREATE TABLE `empr_custom_values` ( 3163 3986 `empr_custom_champ` int(10) unsigned NOT NULL DEFAULT '0', 3164 3987 `empr_custom_origine` int(10) unsigned NOT NULL DEFAULT '0', … … 3176 3999 KEY `i_ecv_f` (`empr_custom_float`) 3177 4000 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3178 3179 -- 3180 -- Volcar la base de datos para la tabla `empr_custom_values` 3181 -- 3182 3183 3184 -- -------------------------------------------------------- 3185 3186 -- 3187 -- Estructura de tabla para la tabla `empr_grilles` 4001 /*!40101 SET character_set_client = @saved_cs_client */; 4002 4003 -- 4004 -- Dumping data for table `empr_custom_values` 4005 -- 4006 4007 LOCK TABLES `empr_custom_values` WRITE; 4008 /*!40000 ALTER TABLE `empr_custom_values` DISABLE KEYS */; 4009 /*!40000 ALTER TABLE `empr_custom_values` ENABLE KEYS */; 4010 UNLOCK TABLES; 4011 4012 -- 4013 -- Table structure for table `empr_grilles` 3188 4014 -- 3189 4015 3190 4016 DROP TABLE IF EXISTS `empr_grilles`; 3191 CREATE TABLE IF NOT EXISTS `empr_grilles` ( 4017 /*!40101 SET @saved_cs_client = @@character_set_client */; 4018 /*!40101 SET character_set_client = utf8 */; 4019 CREATE TABLE `empr_grilles` ( 3192 4020 `empr_grille_categ` int(5) NOT NULL DEFAULT '0', 3193 4021 `empr_grille_location` int(5) NOT NULL DEFAULT '0', … … 3195 4023 PRIMARY KEY (`empr_grille_categ`,`empr_grille_location`) 3196 4024 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3197 3198 -- 3199 -- Volcar la base de datos para la tabla `empr_grilles` 3200 -- 3201 3202 3203 -- -------------------------------------------------------- 3204 3205 -- 3206 -- Estructura de tabla para la tabla `empr_groupe` 4025 /*!40101 SET character_set_client = @saved_cs_client */; 4026 4027 -- 4028 -- Dumping data for table `empr_grilles` 4029 -- 4030 4031 LOCK TABLES `empr_grilles` WRITE; 4032 /*!40000 ALTER TABLE `empr_grilles` DISABLE KEYS */; 4033 /*!40000 ALTER TABLE `empr_grilles` ENABLE KEYS */; 4034 UNLOCK TABLES; 4035 4036 -- 4037 -- Table structure for table `empr_groupe` 3207 4038 -- 3208 4039 3209 4040 DROP TABLE IF EXISTS `empr_groupe`; 3210 CREATE TABLE IF NOT EXISTS `empr_groupe` ( 4041 /*!40101 SET @saved_cs_client = @@character_set_client */; 4042 /*!40101 SET character_set_client = utf8 */; 4043 CREATE TABLE `empr_groupe` ( 3211 4044 `empr_id` int(6) unsigned NOT NULL DEFAULT '0', 3212 4045 `groupe_id` int(6) unsigned NOT NULL DEFAULT '0', 3213 4046 PRIMARY KEY (`empr_id`,`groupe_id`) 3214 4047 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3215 3216 -- 3217 -- Volcar la base de datos para la tabla `empr_groupe` 3218 -- 3219 3220 3221 -- -------------------------------------------------------- 3222 3223 -- 3224 -- Estructura de tabla para la tabla `empr_statut` 4048 /*!40101 SET character_set_client = @saved_cs_client */; 4049 4050 -- 4051 -- Dumping data for table `empr_groupe` 4052 -- 4053 4054 LOCK TABLES `empr_groupe` WRITE; 4055 /*!40000 ALTER TABLE `empr_groupe` DISABLE KEYS */; 4056 /*!40000 ALTER TABLE `empr_groupe` ENABLE KEYS */; 4057 UNLOCK TABLES; 4058 4059 -- 4060 -- Table structure for table `empr_statut` 3225 4061 -- 3226 4062 3227 4063 DROP TABLE IF EXISTS `empr_statut`; 3228 CREATE TABLE IF NOT EXISTS `empr_statut` ( 4064 /*!40101 SET @saved_cs_client = @@character_set_client */; 4065 /*!40101 SET character_set_client = utf8 */; 4066 CREATE TABLE `empr_statut` ( 3229 4067 `idstatut` smallint(5) unsigned NOT NULL AUTO_INCREMENT, 3230 4068 `statut_libelle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 3246 4084 `allow_serialcirc` int(10) unsigned NOT NULL DEFAULT '0', 3247 4085 PRIMARY KEY (`idstatut`) 3248 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ; 3249 3250 -- 3251 -- Volcar la base de datos para la tabla `empr_statut` 3252 -- 3253 3254 INSERT INTO `empr_statut` (`idstatut`, `statut_libelle`, `allow_loan`, `allow_loan_hist`, `allow_book`, `allow_opac`, `allow_dsi`, `allow_dsi_priv`, `allow_sugg`, `allow_dema`, `allow_prol`, `allow_avis`, `allow_tag`, `allow_pwd`, `allow_liste_lecture`, `allow_self_checkout`, `allow_self_checkin`, `allow_serialcirc`) VALUES 3255 (1, 'Actif', 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0), 3256 (2, 'Interdit', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); 3257 3258 -- -------------------------------------------------------- 3259 3260 -- 3261 -- Estructura de tabla para la tabla `empty_words_calculs` 4086 ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 4087 /*!40101 SET character_set_client = @saved_cs_client */; 4088 4089 -- 4090 -- Dumping data for table `empr_statut` 4091 -- 4092 4093 LOCK TABLES `empr_statut` WRITE; 4094 /*!40000 ALTER TABLE `empr_statut` DISABLE KEYS */; 4095 INSERT INTO `empr_statut` VALUES (1,'Actif',1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0),(2,'Interdit',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); 4096 /*!40000 ALTER TABLE `empr_statut` ENABLE KEYS */; 4097 UNLOCK TABLES; 4098 4099 -- 4100 -- Table structure for table `empty_words_calculs` 3262 4101 -- 3263 4102 3264 4103 DROP TABLE IF EXISTS `empty_words_calculs`; 3265 CREATE TABLE IF NOT EXISTS `empty_words_calculs` ( 4104 /*!40101 SET @saved_cs_client = @@character_set_client */; 4105 /*!40101 SET character_set_client = utf8 */; 4106 CREATE TABLE `empty_words_calculs` ( 3266 4107 `id_calcul` int(9) unsigned NOT NULL AUTO_INCREMENT, 3267 4108 `date_calcul` date NOT NULL DEFAULT '0000-00-00', … … 3270 4111 `archive_calcul` tinyint(1) NOT NULL DEFAULT '0', 3271 4112 PRIMARY KEY (`id_calcul`) 3272 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 3273 3274 -- 3275 -- Volcar la base de datos para la tabla `empty_words_calculs` 3276 -- 3277 3278 3279 -- -------------------------------------------------------- 3280 3281 -- 3282 -- Estructura de tabla para la tabla `entites` 4113 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 4114 /*!40101 SET character_set_client = @saved_cs_client */; 4115 4116 -- 4117 -- Dumping data for table `empty_words_calculs` 4118 -- 4119 4120 LOCK TABLES `empty_words_calculs` WRITE; 4121 /*!40000 ALTER TABLE `empty_words_calculs` DISABLE KEYS */; 4122 /*!40000 ALTER TABLE `empty_words_calculs` ENABLE KEYS */; 4123 UNLOCK TABLES; 4124 4125 -- 4126 -- Table structure for table `entites` 3283 4127 -- 3284 4128 3285 4129 DROP TABLE IF EXISTS `entites`; 3286 CREATE TABLE IF NOT EXISTS `entites` ( 3287 `id_entite` int(5) unsigned NOT NULL AUTO_INCREMENT, 4130 /*!40101 SET @saved_cs_client = @@character_set_client */; 4131 /*!40101 SET character_set_client = utf8 */; 4132 CREATE TABLE `entites` ( 4133 `id_entite` int(5) unsigned NOT NULL AUTO_INCREMENT, 3288 4134 `type_entite` int(3) unsigned NOT NULL DEFAULT '0', 3289 4135 `num_bibli` int(5) unsigned NOT NULL DEFAULT '0', … … 3304 4150 PRIMARY KEY (`id_entite`), 3305 4151 KEY `raison_sociale` (`raison_sociale`) 3306 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 3307 3308 -- 3309 -- Volcar la base de datos para la tabla `entites` 3310 -- 3311 3312 3313 -- -------------------------------------------------------- 3314 3315 -- 3316 -- Estructura de tabla para la tabla `entrepots_localisations` 4152 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 4153 /*!40101 SET character_set_client = @saved_cs_client */; 4154 4155 -- 4156 -- Dumping data for table `entites` 4157 -- 4158 4159 LOCK TABLES `entites` WRITE; 4160 /*!40000 ALTER TABLE `entites` DISABLE KEYS */; 4161 /*!40000 ALTER TABLE `entites` ENABLE KEYS */; 4162 UNLOCK TABLES; 4163 4164 -- 4165 -- Table structure for table `entrepots_localisations` 3317 4166 -- 3318 4167 3319 4168 DROP TABLE IF EXISTS `entrepots_localisations`; 3320 CREATE TABLE IF NOT EXISTS `entrepots_localisations` ( 4169 /*!40101 SET @saved_cs_client = @@character_set_client */; 4170 /*!40101 SET character_set_client = utf8 */; 4171 CREATE TABLE `entrepots_localisations` ( 3321 4172 `loc_id` int(11) NOT NULL AUTO_INCREMENT, 3322 4173 `loc_code` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', … … 3325 4176 PRIMARY KEY (`loc_id`), 3326 4177 UNIQUE KEY `loc_code` (`loc_code`) 3327 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 3328 3329 -- 3330 -- Volcar la base de datos para la tabla `entrepots_localisations` 3331 -- 3332 3333 3334 -- -------------------------------------------------------- 3335 3336 -- 3337 -- Estructura de tabla para la tabla `equations` 4178 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 4179 /*!40101 SET character_set_client = @saved_cs_client */; 4180 4181 -- 4182 -- Dumping data for table `entrepots_localisations` 4183 -- 4184 4185 LOCK TABLES `entrepots_localisations` WRITE; 4186 /*!40000 ALTER TABLE `entrepots_localisations` DISABLE KEYS */; 4187 /*!40000 ALTER TABLE `entrepots_localisations` ENABLE KEYS */; 4188 UNLOCK TABLES; 4189 4190 -- 4191 -- Table structure for table `equations` 3338 4192 -- 3339 4193 3340 4194 DROP TABLE IF EXISTS `equations`; 3341 CREATE TABLE IF NOT EXISTS `equations` ( 3342 `id_equation` int(9) unsigned NOT NULL AUTO_INCREMENT, 4195 /*!40101 SET @saved_cs_client = @@character_set_client */; 4196 /*!40101 SET character_set_client = utf8 */; 4197 CREATE TABLE `equations` ( 4198 `id_equation` int(9) unsigned NOT NULL AUTO_INCREMENT, 3343 4199 `num_classement` int(8) unsigned NOT NULL DEFAULT '1', 3344 4200 `nom_equation` text COLLATE utf8_unicode_ci NOT NULL, … … 3347 4203 `proprio_equation` int(9) unsigned NOT NULL DEFAULT '0', 3348 4204 PRIMARY KEY (`id_equation`) 3349 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; 3350 3351 -- 3352 -- Volcar la base de datos para la tabla `equations` 3353 -- 3354 3355 3356 -- -------------------------------------------------------- 3357 3358 -- 3359 -- Estructura de tabla para la tabla `error_log` 4205 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 4206 /*!40101 SET character_set_client = @saved_cs_client */; 4207 4208 -- 4209 -- Dumping data for table `equations` 4210 -- 4211 4212 LOCK TABLES `equations` WRITE; 4213 /*!40000 ALTER TABLE `equations` DISABLE KEYS */; 4214 /*!40000 ALTER TABLE `equations` ENABLE KEYS */; 4215 UNLOCK TABLES; 4216 4217 -- 4218 -- Table structure for table `error_log` 3360 4219 -- 3361 4220 3362 4221 DROP TABLE IF EXISTS `error_log`; 3363 CREATE TABLE IF NOT EXISTS `error_log` ( 3364 `error_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 4222 /*!40101 SET @saved_cs_client = @@character_set_client */; 4223 /*!40101 SET character_set_client = utf8 */; 4224 CREATE TABLE `error_log` ( 4225 `error_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 3365 4226 `error_origin` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, 3366 4227 `error_text` text COLLATE utf8_unicode_ci 3367 4228 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3368 3369 -- 3370 -- Volcar la base de datos para la tabla `error_log` 3371 -- 3372 3373 3374 -- -------------------------------------------------------- 3375 3376 -- 3377 -- Estructura de tabla para la tabla `es_cache` 4229 /*!40101 SET character_set_client = @saved_cs_client */; 4230 4231 -- 4232 -- Dumping data for table `error_log` 4233 -- 4234 4235 LOCK TABLES `error_log` WRITE; 4236 /*!40000 ALTER TABLE `error_log` DISABLE KEYS */; 4237 /*!40000 ALTER TABLE `error_log` ENABLE KEYS */; 4238 UNLOCK TABLES; 4239 4240 -- 4241 -- Table structure for table `es_cache` 3378 4242 -- 3379 4243 3380 4244 DROP TABLE IF EXISTS `es_cache`; 3381 CREATE TABLE IF NOT EXISTS `es_cache` ( 3382 `escache_groupname` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 4245 /*!40101 SET @saved_cs_client = @@character_set_client */; 4246 /*!40101 SET character_set_client = utf8 */; 4247 CREATE TABLE `es_cache` ( 4248 `escache_groupname` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3383 4249 `escache_unique_id` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3384 4250 `escache_value` int(11) NOT NULL DEFAULT '0', 3385 4251 PRIMARY KEY (`escache_groupname`,`escache_unique_id`,`escache_value`) 3386 4252 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3387 3388 -- 3389 -- Volcar la base de datos para la tabla `es_cache` 3390 -- 3391 3392 3393 -- -------------------------------------------------------- 3394 3395 -- 3396 -- Estructura de tabla para la tabla `es_cache_blob` 4253 /*!40101 SET character_set_client = @saved_cs_client */; 4254 4255 -- 4256 -- Dumping data for table `es_cache` 4257 -- 4258 4259 LOCK TABLES `es_cache` WRITE; 4260 /*!40000 ALTER TABLE `es_cache` DISABLE KEYS */; 4261 /*!40000 ALTER TABLE `es_cache` ENABLE KEYS */; 4262 UNLOCK TABLES; 4263 4264 -- 4265 -- Table structure for table `es_cache_blob` 3397 4266 -- 3398 4267 3399 4268 DROP TABLE IF EXISTS `es_cache_blob`; 3400 CREATE TABLE IF NOT EXISTS `es_cache_blob` ( 4269 /*!40101 SET @saved_cs_client = @@character_set_client */; 4270 /*!40101 SET character_set_client = utf8 */; 4271 CREATE TABLE `es_cache_blob` ( 3401 4272 `es_cache_objectref` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3402 4273 `es_cache_objecttype` int(11) NOT NULL DEFAULT '0', … … 3409 4280 KEY `cache_index` (`es_cache_owner`,`es_cache_objectformat`,`es_cache_objecttype`) 3410 4281 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 3411 3412 -- 3413 -- Volcar la base de datos para la tabla `es_cache_blob` 3414 -- 3415 3416 3417 -- -------------------------------------------------------- 3418 3419 -- 3420 -- Estructura de tabla para la tabla `es_cache_int` 4282 /*!40101 SET character_set_client = @saved_cs_client */; 4283 4284 -- 4285 -- Dumping data for table `es_cache_blob` 4286 -- 4287 4288 LOCK TABLES `es_cache_blob` WRITE; 4289 /*!40000 ALTER TABLE `es_cache_blob` DISABLE KEYS */; 4290 /*!40000 ALTER TABLE `es_cache_blob` ENABLE KEYS */; 4291 UNLOCK TABLES; 4292 4293 -- 4294 -- Table structure for table `es_cache_int` 3421 4295 -- 3422 4296 3423 4297 DROP TABLE IF EXISTS `es_cache_int`; 3424 CREATE TABLE IF NOT EXISTS `es_cache_int` ( 3425 `es_cache_objectref` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 4298 /*!40101 SET @saved_cs_client = @@character_set_client */; 4299 /*!40101 SET character_set_client = utf8 */; 4300 CREATE TABLE `es_cache_int` ( 4301 `es_cache_objectref` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', 3426 4302 `es_cache_objecttype` int(11) NOT NULL DEFAULT '0', 3427 4303 `es_cache_objectformat` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',