File: /home/undanet/dump/db/portalempleo_data_des_dbo_convocatoriaresolucion.sql
CREATE DATABASE IF NOT EXISTS `portalempleo_data_des` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `portalempleo_data_des`;
-- MySQL dump 10.13 Distrib 8.0.22, for Win64 (x86_64)
--
-- Host: SRVDESARROLLO Database: portalempleo_data_des
-- ------------------------------------------------------
-- Server version 8.0.23
/*!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 */;
/*!50503 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 `dbo_convocatoriaresolucion`
--
DROP TABLE IF EXISTS `dbo_convocatoriaresolucion`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dbo_convocatoriaresolucion` (
`IdConvocatoriaResolucion` int NOT NULL AUTO_INCREMENT,
`CodigoConvocatoria` int DEFAULT NULL,
`Descripcion` varchar(200) NOT NULL,
`FechaResolucion` datetime NOT NULL,
`RutaFicheroResolucion` varchar(200) NOT NULL,
`Baja` tinyint(1) NOT NULL,
PRIMARY KEY (`IdConvocatoriaResolucion`),
KEY `FK_convocatoriaresolucion_convocatoria_idx` (`CodigoConvocatoria`),
CONSTRAINT `FK_convocatoriaresolucion_convocatoria` FOREIGN KEY (`CodigoConvocatoria`) REFERENCES `dbo_convocatoria` (`IdConvocatoria`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dbo_convocatoriaresolucion`
--
LOCK TABLES `dbo_convocatoriaresolucion` WRITE;
/*!40000 ALTER TABLE `dbo_convocatoriaresolucion` DISABLE KEYS */;
INSERT INTO `dbo_convocatoriaresolucion` VALUES (1,14,'Resolución primera','2021-02-17 00:00:00','ruta',1),(3,14,'Nueva Resolucion','2021-02-17 15:59:29','//Convocatorias//14121//0.-Identification-of-Employee-training-needs-VIGENTE-JGanoza.pdf',0),(4,14,'Nueva Resolucion','2021-02-17 16:03:44','//Convocatorias//14121//01.Formacion-PR-2020-Ana-M-Cives.pdf',1),(5,15,'F1','2021-03-18 09:45:35','//Convocatorias//14221//-Firma-Global-XMLSOAP-PROFILE-DSS.pdf',0);
/*!40000 ALTER TABLE `dbo_convocatoriaresolucion` 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 2021-05-06 14:12:58