162 lines
15 KiB
MySQL
162 lines
15 KiB
MySQL
|
-- MySQL dump 10.13 Distrib 5.5.52, for debian-linux-gnu (x86_64)
|
||
|
--
|
||
|
-- Host: localhost Database: web_dedalo
|
||
|
-- ------------------------------------------------------
|
||
|
-- Server version 5.5.52-0+deb8u1
|
||
|
|
||
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||
|
/*!40101 SET NAMES utf8 */;
|
||
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
||
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `image`
|
||
|
--
|
||
|
|
||
|
DROP TABLE IF EXISTS `image`;
|
||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
CREATE TABLE `image` (
|
||
|
`id` int(12) NOT NULL AUTO_INCREMENT,
|
||
|
`section_id` int(12) unsigned DEFAULT NULL COMMENT 'Campo creado automáticamente para guardar section_id (sin correspondencia en estructura)',
|
||
|
`lang` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Campo creado automáticamente para guardar el idioma (sin correspondencia en estructura)',
|
||
|
`publication` enum('yes','no') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Difusión - rsc20',
|
||
|
`image` text COLLATE utf8_unicode_ci COMMENT 'Imagen - rsc29',
|
||
|
PRIMARY KEY (`id`),
|
||
|
UNIQUE KEY `section_id_lang_constrain` (`section_id`,`lang`),
|
||
|
KEY `section_id` (`section_id`),
|
||
|
KEY `lang` (`lang`),
|
||
|
KEY `publication` (`publication`),
|
||
|
FULLTEXT KEY `image` (`image`)
|
||
|
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci PACK_KEYS=0 COMMENT='Tabla autogenerada en Dédalo4 para difusión';
|
||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
||
|
--
|
||
|
-- Dumping data for table `image`
|
||
|
--
|
||
|
|
||
|
LOCK TABLES `image` WRITE;
|
||
|
/*!40000 ALTER TABLE `image` DISABLE KEYS */;
|
||
|
INSERT INTO `image` VALUES (1,1,'lg-spa','yes','/dedalo-4/media/image/1.5MB/rsc29_rsc170_1.jpg'),(2,1,'lg-eus','yes','/dedalo-4/media/image/1.5MB/rsc29_rsc170_1.jpg'),(23,59,'lg-spa','yes','/dedalo-4/media/image/1.5MB/rsc29_rsc170_59.jpg'),(24,59,'lg-eus','yes','/dedalo-4/media/image/1.5MB/rsc29_rsc170_59.jpg'),(59,62,'lg-spa','yes','/dedalo-4/media/image/1.5MB/rsc29_rsc170_62.jpg'),(60,62,'lg-eus','yes','/dedalo-4/media/image/1.5MB/rsc29_rsc170_62.jpg');
|
||
|
/*!40000 ALTER TABLE `image` ENABLE KEYS */;
|
||
|
UNLOCK TABLES;
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `informant`
|
||
|
--
|
||
|
|
||
|
DROP TABLE IF EXISTS `informant`;
|
||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
CREATE TABLE `informant` (
|
||
|
`id` int(12) NOT NULL AUTO_INCREMENT,
|
||
|
`section_id` int(12) unsigned DEFAULT NULL COMMENT 'Campo creado automáticamente para guardar section_id (sin correspondencia en estructura)',
|
||
|
`lang` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Campo creado automáticamente para guardar el idioma (sin correspondencia en estructura)',
|
||
|
`publication` enum('yes','no') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Difusión - rsc279',
|
||
|
`name` text COLLATE utf8_unicode_ci COMMENT 'Nombre - rsc85',
|
||
|
`surname` text COLLATE utf8_unicode_ci COMMENT 'Apellidos - rsc86',
|
||
|
`nickname` text COLLATE utf8_unicode_ci COMMENT 'Sobrenombre - rsc87',
|
||
|
`birthdate` date DEFAULT NULL COMMENT 'Fecha de nacimiento - rsc89',
|
||
|
`birthplace` text COLLATE utf8_unicode_ci COMMENT 'Lugar de nacimiento - rsc91',
|
||
|
`gender` text COLLATE utf8_unicode_ci COMMENT 'Género - rsc93',
|
||
|
PRIMARY KEY (`id`),
|
||
|
UNIQUE KEY `section_id_lang_constrain` (`section_id`,`lang`),
|
||
|
KEY `section_id` (`section_id`),
|
||
|
KEY `lang` (`lang`),
|
||
|
KEY `publication` (`publication`),
|
||
|
KEY `birthdate` (`birthdate`),
|
||
|
FULLTEXT KEY `name` (`name`),
|
||
|
FULLTEXT KEY `surname` (`surname`),
|
||
|
FULLTEXT KEY `nickname` (`nickname`),
|
||
|
FULLTEXT KEY `birthplace` (`birthplace`),
|
||
|
FULLTEXT KEY `gender` (`gender`)
|
||
|
) ENGINE=MyISAM AUTO_INCREMENT=99 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci PACK_KEYS=0 COMMENT='Tabla autogenerada en Dédalo4 para difusión';
|
||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
||
|
--
|
||
|
-- Dumping data for table `informant`
|
||
|
--
|
||
|
|
||
|
LOCK TABLES `informant` WRITE;
|
||
|
/*!40000 ALTER TABLE `informant` DISABLE KEYS */;
|
||
|
INSERT INTO `informant` VALUES (5,1,'lg-spa','yes','Mari Pili','Alkain','','1941-01-01','Añorga, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer '),(6,1,'lg-eus','yes','Mari Pili','Alkain','','1941-01-01','Añorga, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer '),(7,3,'lg-spa','yes','Kontxi','Argote','','1938-04-05','Añorga, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer '),(8,3,'lg-eus','yes','Kontxi','Argote','','1938-04-05','Añorga, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer '),(9,2,'lg-spa','yes','Kontxi ','Elizegi','','1927-01-01','Antiguo, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer '),(10,2,'lg-eus','yes','Kontxi ','Elizegi','','1927-01-01','Antiguo, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer '),(97,4,'lg-spa','yes','María Dolores',' Elizegi','','1933-01-01','Añorga, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer '),(98,4,'lg-eus','yes','María Dolores',' Elizegi','','1933-01-01','Añorga, Donostia-San Sebastián, Guipúzcoa, País Vasco, España','Mujer ');
|
||
|
/*!40000 ALTER TABLE `informant` ENABLE KEYS */;
|
||
|
UNLOCK TABLES;
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `interview`
|
||
|
--
|
||
|
|
||
|
DROP TABLE IF EXISTS `interview`;
|
||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
CREATE TABLE `interview` (
|
||
|
`id` int(12) NOT NULL AUTO_INCREMENT,
|
||
|
`section_id` int(12) unsigned DEFAULT NULL COMMENT 'Campo creado automáticamente para guardar section_id (sin correspondencia en estructura)',
|
||
|
`lang` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Campo creado automáticamente para guardar el idioma (sin correspondencia en estructura)',
|
||
|
`publication` enum('yes','no') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Difusión - oh32',
|
||
|
`code` text COLLATE utf8_unicode_ci COMMENT 'Código - oh14',
|
||
|
`title` text COLLATE utf8_unicode_ci COMMENT 'Título - oh16',
|
||
|
`abstract` text COLLATE utf8_unicode_ci COMMENT 'Resumen - oh23',
|
||
|
`priority` int(8) unsigned DEFAULT NULL COMMENT 'Calidad - oh21',
|
||
|
`country` text COLLATE utf8_unicode_ci COMMENT 'Autocreated column for country compatibility',
|
||
|
`autonomous_community` text COLLATE utf8_unicode_ci COMMENT 'Autocreated column for country compatibility',
|
||
|
`province` text COLLATE utf8_unicode_ci COMMENT 'Autocreated column for country compatibility',
|
||
|
`comarca` text COLLATE utf8_unicode_ci COMMENT 'Autocreated column for country compatibility',
|
||
|
`municipality` text COLLATE utf8_unicode_ci COMMENT 'Autocreated column for country compatibility',
|
||
|
`neighborhood` text COLLATE utf8_unicode_ci COMMENT 'Autocreated column for country compatibility',
|
||
|
`primary_lang` text COLLATE utf8_unicode_ci COMMENT 'Idioma - oh20',
|
||
|
`date` date DEFAULT NULL COMMENT 'Fecha alta - oh29',
|
||
|
`image` text COLLATE utf8_unicode_ci COMMENT 'Imagen identificativa - oh17',
|
||
|
`audiovisual` text COLLATE utf8_unicode_ci COMMENT 'Audiovisual - oh25',
|
||
|
`informant` text COLLATE utf8_unicode_ci COMMENT 'Informantes - oh24',
|
||
|
PRIMARY KEY (`id`),
|
||
|
UNIQUE KEY `section_id_lang_constrain` (`section_id`,`lang`),
|
||
|
KEY `section_id` (`section_id`),
|
||
|
KEY `lang` (`lang`),
|
||
|
KEY `publication` (`publication`),
|
||
|
KEY `priority` (`priority`),
|
||
|
KEY `date` (`date`),
|
||
|
FULLTEXT KEY `code` (`code`),
|
||
|
FULLTEXT KEY `title` (`title`),
|
||
|
FULLTEXT KEY `abstract` (`abstract`),
|
||
|
FULLTEXT KEY `country` (`country`),
|
||
|
FULLTEXT KEY `autonomous_community` (`autonomous_community`),
|
||
|
FULLTEXT KEY `province` (`province`),
|
||
|
FULLTEXT KEY `comarca` (`comarca`),
|
||
|
FULLTEXT KEY `municipality` (`municipality`),
|
||
|
FULLTEXT KEY `neighborhood` (`neighborhood`),
|
||
|
FULLTEXT KEY `primary_lang` (`primary_lang`),
|
||
|
FULLTEXT KEY `image` (`image`),
|
||
|
FULLTEXT KEY `audiovisual` (`audiovisual`),
|
||
|
FULLTEXT KEY `informant` (`informant`)
|
||
|
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci PACK_KEYS=0 COMMENT='Tabla autogenerada en Dédalo4 para difusión';
|
||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
||
|
--
|
||
|
-- Dumping data for table `interview`
|
||
|
--
|
||
|
|
||
|
LOCK TABLES `interview` WRITE;
|
||
|
/*!40000 ALTER TABLE `interview` DISABLE KEYS */;
|
||
|
INSERT INTO `interview` VALUES (1,1,'lg-spa','yes','','Titulo','',5,'','','','','','','Castellano','0000-00-00','[]','[]','[]'),(2,1,'lg-eus','yes','','','',5,'','','','','','','Castellano','0000-00-00','[]','[]','[]'),(3,24,'lg-spa','yes','ELK_MPIO_17_012 ','Entrevista realizada a Izaskun Unzurrunzaga y María Pilar Agirre','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"55\"]','[\"22\"]','[\"40\",\"43\"]'),(4,24,'lg-eus','yes','ELK_MPIO_17_012 ','','',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"55\"]','[\"22\"]','[\"40\",\"43\"]'),(5,27,'lg-spa','yes','ELK_MPIO_17_009 ','Entrevista a Juan Antonio Urteaga','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"53\"]','[\"23\"]','[\"37\"]'),(6,27,'lg-eus','yes','ELK_MPIO_17_009 ','','',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"53\"]','[\"23\"]','[\"37\"]'),(7,28,'lg-spa','yes','ELK_MPIO_17_006','Entrevista realizada a Andres Telleria Zumarraga','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Donostia-San Sebastián','','Basque','0000-00-00','[\"56\"]','[\"24\"]','[\"39\"]'),(8,28,'lg-eus','yes','ELK_MPIO_17_006','','',5,'España','País Vasco','Guipúzcoa','','Donostia-San Sebastián','','Basque','0000-00-00','[\"56\"]','[\"24\"]','[\"39\"]'),(9,29,'lg-spa','yes','ELK_MPIO_17_003','Entrevista realizada a Javier Lasa Berasategi','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"57\"]','[\"25\"]','[\"38\"]'),(10,29,'lg-eus','yes','ELK_MPIO_17_003','','',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"57\"]','[\"25\"]','[\"38\"]'),(11,30,'lg-spa','yes','ELK_MPIO_17_005 Francisco Montero','Entrevista realizada a Francisco Montero Gaminde','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Arrasate/Mondragón','','Castellano','0000-00-00','[\"61\"]','[\"26\"]','[\"42\"]'),(12,30,'lg-eus','yes','ELK_MPIO_17_005 Francisco Montero','','',5,'España','País Vasco','Guipúzcoa','','Arrasate/Mondragón','','Castellano','0000-00-00','[\"61\"]','[\"26\"]','[\"42\"]'),(13,31,'lg-spa','yes','ELK_MPIO_17_001 ','Entrevista realizada a Jose Azurmendi Larrea','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Donostia-San Sebastián','','Basque','0000-00-00','[\"65\"]','[\"27\"]','[\"41\"]'),(14,31,'lg-eus','yes','ELK_MPIO_17_001 ','','',5,'España','País Vasco','Guipúzcoa','','Donostia-San Sebastián','','Basque','0000-00-00','[\"65\"]','[\"27\"]','[\"41\"]'),(15,32,'lg-spa','yes','ELK_MPIO_17_002 ','Entrevista realizada a José María Elosegi y a María Ángeles Vallejo','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Castellano','0000-00-00','[\"68\"]','[\"29\"]','[\"45\",\"46\"]'),(16,32,'lg-eus','yes','ELK_MPIO_17_002 ','','',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Castellano','0000-00-00','[\"68\"]','[\"29\"]','[\"45\",\"46\"]'),(17,33,'lg-spa','yes','ELK_MPIO_17_007 ','Entrevista realizada a Arantxazu Garmendia Lasa','Entrevista realizada en el marco del proyecto Memoria y paisaje industrial Ormaiztegi',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"69\"]','[\"30\"]','[\"47\"]'),(18,33,'lg-eus','yes','ELK_MPIO_17_007 ','','',5,'España','País Vasco','Guipúzcoa','','Ormaiztegi','','Basque','0000-00-00','[\"69\"]','[\"30\"]','[\"47\"]'),(19,34,'lg-spa','yes','ELK_MPIO_17_008 ','Entrevista realizada a Elixabete Garmend
|
||
|
/*!40000 ALTER TABLE `interview` ENABLE KEYS */;
|
||
|
UNLOCK TABLES;
|
||
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||
|
|
||
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||
|
|
||
|
-- Dump completed on 2017-07-22 21:26:54
|