-- --------------------------------------------------------
-- Host:                         127.0.0.1
-- Versión del servidor:         8.0.30 - MySQL Community Server - GPL
-- SO del servidor:              Win64
-- HeidiSQL Versión:             12.1.0.6537
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!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 */;


-- Volcando estructura de base de datos para congreso
CREATE DATABASE IF NOT EXISTS `congreso` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `congreso`;

-- Volcando estructura para tabla congreso.migrations
CREATE TABLE IF NOT EXISTS `migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Volcando datos para la tabla congreso.migrations: ~37 rows (aproximadamente)
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
	(1, '0001_01_01_000000_create_users_table', 1),
	(2, '0001_01_01_000001_create_cache_table', 1),
	(3, '2025_10_20_193302_create_jobs_table', 1),
	(4, '2025_10_20_194010_create_congresos_table', 1),
	(5, '2025_10_20_194012_create_registros_table', 1),
	(6, '2025_10_20_194013_create_plantilla_constancias_table', 1),
	(7, '2025_10_20_194017_create_constancia_emitidas_table', 1),
	(8, '2025_10_20_205106_create_events_table', 2),
	(9, '2025_10_20_220716_modificar_congresos_para_landing_estructurada', 2),
	(10, '2025_10_20_223229_add_programa_pdf_to_congresos_table', 3),
	(11, '2025_10_21_155012_crear_tabla_estados', 4),
	(12, '2025_10_21_155016_crear_tabla_municipios', 4),
	(13, '2025_10_21_155020_crear_tabla_dependencias', 4),
	(14, '2025_10_21_161521_create_sectors_table', 5),
	(15, '2025_10_21_175526_add_campos_demograficos_to_registros_table', 6),
	(16, '2025_10_21_161912_create_estados_table', 6),
	(17, '2025_10_21_161919_create_municipios_table', 6),
	(18, '2025_10_21_161925_create_dependencias_table', 6),
	(19, '2025_10_21_162526_add_campos_demograficos_to_registros_table', 6),
	(20, '2025_10_21_165111_add_sector_id_to_registros_table', 6),
	(21, '2025_10_21_184924_add_tipo_logica_to_sectors_table', 7),
	(22, '2025_10_21_185631_drop_lugar_procedencia_from_registros_table', 8),
	(23, '2025_10_21_201500_create_failed_jobs_table', 9),
	(24, '2025_10_21_222017_add_logo_secundario_to_congresos_table', 10),
	(25, '2025_10_22_021118_add_more_signatures_to_plantilla_constancias_table', 11),
	(26, '2025_10_22_023250_add_position_fields_to_plantilla_constancias_table', 12),
	(27, '2025_10_22_184929_add_hero_options_to_congresos_table', 13),
	(28, '2025_10_22_212104_add_hero_mobile_image_to_congresos_table', 14),
	(29, '2025_10_24_174639_add_nombre_style_to_plantilla_constancias_table', 15),
	(30, '2025_11_03_064220_create_plantilla_invitacions_table', 16),
	(31, '2025_11_03_064302_create_invitados_table', 16),
	(32, '2025_11_03_075857_add_design_fields_to_plantilla_invitacions_table', 17),
	(33, '2025_11_03_160236_add_cargo_to_invitados_table', 18),
	(34, '2025_11_03_160241_add_cargo_to_registros_table', 18),
	(35, '2025_11_03_185017_add_cargo_fields_to_plantilla_invitacions_table', 19),
	(36, '2022_11_04_182557_add_role_to_users_table', 20),
	(37, '2025_11_13_190235_add_reminder_status_to_registros_table', 21);

/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
