/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19-12.1.2-MariaDB, for Win64 (AMD64)
--
-- Host: localhost    Database: plat_educ_chme
-- ------------------------------------------------------
-- Server version	12.1.2-MariaDB

/*!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 utf8mb4 */;
/*!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' */;
/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;

--
-- Table structure for table `actividades_actividad`
--

DROP TABLE IF EXISTS `actividades_actividad`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `actividades_actividad` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `titulo` varchar(200) NOT NULL,
  `descripcion` longtext NOT NULL,
  `video_url` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `actividades_actividad`
--

LOCK TABLES `actividades_actividad` WRITE;
/*!40000 ALTER TABLE `actividades_actividad` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `actividades_actividad` VALUES
(1,'Variables (cualitativas y cuantitativas)','En esta actividad aprenderás sobre las diferentes variables que existen en la estadística.','https://www.youtube.com/watch?v=nCszHELuwxk');
/*!40000 ALTER TABLE `actividades_actividad` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `actividades_mat`
--

DROP TABLE IF EXISTS `actividades_mat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `actividades_mat` (
  `id_act` int(11) NOT NULL AUTO_INCREMENT,
  `preg_act` varchar(255) NOT NULL,
  `url_video` varchar(255) DEFAULT NULL,
  `id_tem` int(11) DEFAULT NULL,
  PRIMARY KEY (`id_act`),
  KEY `id_tem` (`id_tem`),
  CONSTRAINT `actividades_mat_ibfk_1` FOREIGN KEY (`id_tem`) REFERENCES `temario_mat` (`id_tem`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `actividades_mat`
--

LOCK TABLES `actividades_mat` WRITE;
/*!40000 ALTER TABLE `actividades_mat` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `actividades_mat` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `actividades_opcion`
--

DROP TABLE IF EXISTS `actividades_opcion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `actividades_opcion` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `texto` varchar(255) NOT NULL,
  `es_correcta` tinyint(1) NOT NULL,
  `pregunta_id` bigint(20) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `actividades_opcion_pregunta_id_19f5542d_fk_actividad` (`pregunta_id`),
  CONSTRAINT `actividades_opcion_pregunta_id_19f5542d_fk_actividad` FOREIGN KEY (`pregunta_id`) REFERENCES `actividades_pregunta` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `actividades_opcion`
--

LOCK TABLES `actividades_opcion` WRITE;
/*!40000 ALTER TABLE `actividades_opcion` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `actividades_opcion` VALUES
(2,'Las variables cualitativas describen características o categorías; las cuantitativas representan cantidades numéricas.',1,1),
(3,'Las variables cualitativas se expresan con números y las cuantitativas con colores.',0,1),
(4,'Las variables cuantitativas solo sirven para encuestas y las cualitativas para matemáticas.',0,1),
(5,'Ambas variables únicamente representan opiniones y nunca pueden medirse.',0,1),
(6,'Temperatura corporal',0,2),
(7,'Número de hermanos',1,2),
(8,'Tipo de música favorita',0,2),
(9,'Nivel educativo',0,2),
(10,'Categorías sin orden',0,3),
(11,'Valores contables solamente',0,3),
(12,'Valores que pueden tomar cualquier número en un intervalo',1,3),
(13,'Solo números enteros',0,3),
(14,'Las variables cualitativas siempre se miden con números',0,4),
(15,'Las variables cuantitativas no pueden ordenarse',0,4),
(16,'Las variables ordinales son cualitativas con orden',1,4),
(17,'Las variables nominales tienen orden natural',0,4),
(18,'Cualitativa ordinal',0,5),
(19,'Cuantitativa discreta',0,5),
(20,'Cuantitativa continua',1,5),
(21,'Cualitativa nominal',0,5);
/*!40000 ALTER TABLE `actividades_opcion` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `actividades_pregunta`
--

DROP TABLE IF EXISTS `actividades_pregunta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `actividades_pregunta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `texto` longtext NOT NULL,
  `actividad_id` bigint(20) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `actividades_pregunta_actividad_id_570730c8_fk_actividad` (`actividad_id`),
  CONSTRAINT `actividades_pregunta_actividad_id_570730c8_fk_actividad` FOREIGN KEY (`actividad_id`) REFERENCES `actividades_actividad` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `actividades_pregunta`
--

LOCK TABLES `actividades_pregunta` WRITE;
/*!40000 ALTER TABLE `actividades_pregunta` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `actividades_pregunta` VALUES
(1,'1- Menciona que son las variables cualitativas y cuantitativas',1),
(2,'2-¿Cuál es un ejemplo de variable cuantitativa discreta?',1),
(3,'3- ¿Qué indica una variable cuantitativa continua?',1),
(4,'4- ¿Cuál de las siguientes afirmaciones es correcta?',1),
(5,'5- ¿Qué tipo de variable es \"calificación en una prueba (0–100)\"',1);
/*!40000 ALTER TABLE `actividades_pregunta` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_group`
--

DROP TABLE IF EXISTS `auth_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_group` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(150) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_group`
--

LOCK TABLES `auth_group` WRITE;
/*!40000 ALTER TABLE `auth_group` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `auth_group` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_group_permissions`
--

DROP TABLE IF EXISTS `auth_group_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_group_permissions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `group_id` int(11) NOT NULL,
  `permission_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `auth_group_permissions_group_id_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`),
  KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`),
  CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
  CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_group_permissions`
--

LOCK TABLES `auth_group_permissions` WRITE;
/*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_permission`
--

DROP TABLE IF EXISTS `auth_permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_permission` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `content_type_id` int(11) NOT NULL,
  `codename` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`),
  CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_permission`
--

LOCK TABLES `auth_permission` WRITE;
/*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `auth_permission` VALUES
(1,'Can add project',1,'add_project'),
(2,'Can change project',1,'change_project'),
(3,'Can delete project',1,'delete_project'),
(4,'Can view project',1,'view_project'),
(5,'Can add log entry',2,'add_logentry'),
(6,'Can change log entry',2,'change_logentry'),
(7,'Can delete log entry',2,'delete_logentry'),
(8,'Can view log entry',2,'view_logentry'),
(9,'Can add permission',3,'add_permission'),
(10,'Can change permission',3,'change_permission'),
(11,'Can delete permission',3,'delete_permission'),
(12,'Can view permission',3,'view_permission'),
(13,'Can add group',4,'add_group'),
(14,'Can change group',4,'change_group'),
(15,'Can delete group',4,'delete_group'),
(16,'Can view group',4,'view_group'),
(17,'Can add user',5,'add_user'),
(18,'Can change user',5,'change_user'),
(19,'Can delete user',5,'delete_user'),
(20,'Can view user',5,'view_user'),
(21,'Can add content type',6,'add_contenttype'),
(22,'Can change content type',6,'change_contenttype'),
(23,'Can delete content type',6,'delete_contenttype'),
(24,'Can view content type',6,'view_contenttype'),
(25,'Can add session',7,'add_session'),
(26,'Can change session',7,'change_session'),
(27,'Can delete session',7,'delete_session'),
(28,'Can view session',7,'view_session'),
(29,'Can add actividad',8,'add_actividad'),
(30,'Can change actividad',8,'change_actividad'),
(31,'Can delete actividad',8,'delete_actividad'),
(32,'Can view actividad',8,'view_actividad'),
(33,'Can add pregunta',9,'add_pregunta'),
(34,'Can change pregunta',9,'change_pregunta'),
(35,'Can delete pregunta',9,'delete_pregunta'),
(36,'Can view pregunta',9,'view_pregunta'),
(37,'Can add opcion',10,'add_opcion'),
(38,'Can change opcion',10,'change_opcion'),
(39,'Can delete opcion',10,'delete_opcion'),
(40,'Can view opcion',10,'view_opcion');
/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_user`
--

DROP TABLE IF EXISTS `auth_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_user` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `password` varchar(128) NOT NULL,
  `last_login` datetime(6) DEFAULT NULL,
  `is_superuser` tinyint(1) NOT NULL,
  `username` varchar(150) NOT NULL,
  `first_name` varchar(150) NOT NULL,
  `last_name` varchar(150) NOT NULL,
  `email` varchar(254) NOT NULL,
  `is_staff` tinyint(1) NOT NULL,
  `is_active` tinyint(1) NOT NULL,
  `date_joined` datetime(6) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_user`
--

LOCK TABLES `auth_user` WRITE;
/*!40000 ALTER TABLE `auth_user` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `auth_user` VALUES
(1,'pbkdf2_sha256$1000000$rL3TiixWYU13CbsQi4Luh2$8703zP7mDlZSImvbIxkQYeATIebOq3rp3Q+VRL9TTz0=','2025-12-05 02:04:03.025569',1,'admin_chme','','','emilianochavezmanzano6@gmail.com',1,1,'2025-11-26 17:35:18.768704'),
(2,'pbkdf2_sha256$1000000$Sax2RTazBDpQglPDqIKSvg$4f1dM0VTLO5XZB+IqiFqSBeZU4K2AYPwa3OzNk7g8G8=','2025-12-03 21:55:08.714890',0,'usuario1','','','',0,1,'2025-11-26 17:53:41.786470'),
(3,'pbkdf2_sha256$1000000$YLfjEbwyeK9rVr4Xo1PFNV$+hMAwQikY/AWui9Fun/X1Nx0A4ffuEeWsdq9BO5KwXQ=','2025-12-03 20:04:31.268691',0,'darkghost','','','asfsafda@gmail.com',0,1,'2025-12-03 20:04:29.615697');
/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_user_groups`
--

DROP TABLE IF EXISTS `auth_user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_user_groups` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `group_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `auth_user_groups_user_id_group_id_94350c0c_uniq` (`user_id`,`group_id`),
  KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`),
  CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
  CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_user_groups`
--

LOCK TABLES `auth_user_groups` WRITE;
/*!40000 ALTER TABLE `auth_user_groups` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_user_user_permissions`
--

DROP TABLE IF EXISTS `auth_user_user_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_user_user_permissions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `permission_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `auth_user_user_permissions_user_id_permission_id_14a6b632_uniq` (`user_id`,`permission_id`),
  KEY `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` (`permission_id`),
  CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
  CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_user_user_permissions`
--

LOCK TABLES `auth_user_user_permissions` WRITE;
/*!40000 ALTER TABLE `auth_user_user_permissions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `django_admin_log`
--

DROP TABLE IF EXISTS `django_admin_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_admin_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `action_time` datetime(6) NOT NULL,
  `object_id` longtext DEFAULT NULL,
  `object_repr` varchar(200) NOT NULL,
  `action_flag` smallint(5) unsigned NOT NULL CHECK (`action_flag` >= 0),
  `change_message` longtext NOT NULL,
  `content_type_id` int(11) DEFAULT NULL,
  `user_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `django_admin_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`),
  KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`),
  CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
  CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `django_admin_log`
--

LOCK TABLES `django_admin_log` WRITE;
/*!40000 ALTER TABLE `django_admin_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `django_admin_log` VALUES
(1,'2025-11-26 17:41:33.156588','1','Matemáticas En este apartado podrás encontrar todo lo relacionado con matemáticas de primer grado.Unidad 1.\r\nProbabilidad y estadística\r\n\r\n-Población y muestra\r\n\r\n-Variables (cualitativas y cuantitati',1,'[{\"added\": {}}]',1,1),
(2,'2025-11-26 17:41:54.009568','1','Matemáticas En este apartado podrás encontrar todo lo relacionado con matemáticas de primer grado.Unidad 1.\r\nProbabilidad y estadística\r\n\r\n-Población y muestra\r\n\r\n-Variables (cualitativas y cuantitati',2,'[]',1,1),
(3,'2025-11-26 17:53:42.146403','2','usuario1',1,'[{\"added\": {}}]',5,1),
(4,'2025-11-26 17:58:13.018566','1','Variables (cualitativas y cuantitativas)',1,'[{\"added\": {}}]',8,1),
(5,'2025-11-26 17:59:04.451473','1','1- Menciona que son las variables cualitativas y cuantitativas',1,'[{\"added\": {}}]',9,1),
(6,'2025-11-26 17:59:31.147552','1','nose',1,'[{\"added\": {}}]',10,1),
(7,'2025-11-26 18:00:20.339235','2','si',1,'[{\"added\": {}}]',10,1),
(8,'2025-12-03 23:53:46.017507','2','Las variables cualitativas describen características o categorías; las cuantitativas representan cantidades numéricas.',2,'[{\"changed\": {\"fields\": [\"Texto\", \"Es correcta\"]}}]',10,1),
(9,'2025-12-03 23:54:26.545476','1','nose',3,'',10,1),
(10,'2025-12-03 23:54:53.018586','3','Las variables cualitativas se expresan con números y las cuantitativas con colores.',1,'[{\"added\": {}}]',10,1),
(11,'2025-12-03 23:55:08.582532','4','Las variables cuantitativas solo sirven para encuestas y las cualitativas para matemáticas.',1,'[{\"added\": {}}]',10,1),
(12,'2025-12-03 23:55:26.888656','5','Ambas variables únicamente representan opiniones y nunca pueden medirse.',1,'[{\"added\": {}}]',10,1),
(13,'2025-12-03 23:58:33.845568','2','¿Cuál es un ejemplo de variable cuantitativa discreta?',1,'[{\"added\": {}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Temperatura corporal\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"N\\u00famero de hermanos\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Tipo de m\\u00fasica favorita\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Nivel educativo\"}}]',9,1),
(14,'2025-12-04 00:00:29.030378','2','2-¿Cuál es un ejemplo de variable cuantitativa discreta?',2,'[{\"changed\": {\"fields\": [\"Texto\"]}}]',9,1),
(15,'2025-12-04 00:01:31.866877','3','3- ¿Qué indica una variable cuantitativa continua?',1,'[{\"added\": {}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Categor\\u00edas sin orden\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Valores contables solamente\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Valores que pueden tomar cualquier n\\u00famero en un intervalo\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Solo n\\u00fameros enteros\"}}]',9,1),
(16,'2025-12-04 00:02:57.193654','4','4- ¿Cuál de las siguientes afirmaciones es correcta?',1,'[{\"added\": {}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Las variables cualitativas siempre se miden con n\\u00fameros\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Las variables cuantitativas no pueden ordenarse\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Las variables ordinales son cualitativas con orden\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Las variables nominales tienen orden natural\"}}]',9,1),
(17,'2025-12-04 00:05:08.708899','5','5- ¿Qué tipo de variable es \"calificación en una prueba (0–100)\"',1,'[{\"added\": {}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Cualitativa ordinal\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Cuantitativa discreta\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Cuantitativa continua\"}}, {\"added\": {\"name\": \"opcion\", \"object\": \"Cualitativa nominal\"}}]',9,1),
(18,'2025-12-04 00:46:25.454689','3','Inglés I En este apartado podrás encontrar todo lo relacionado con la materia de Ingles I.Unidad 1. Introducción al idioma\r\nEl alfabeto y pronunciación básica\r\nGreetings & Introductions (saludos y pre',2,'[{\"changed\": {\"fields\": [\"Tem mat\"]}}]',1,1);
/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `django_content_type`
--

DROP TABLE IF EXISTS `django_content_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_content_type` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `app_label` varchar(100) NOT NULL,
  `model` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `django_content_type`
--

LOCK TABLES `django_content_type` WRITE;
/*!40000 ALTER TABLE `django_content_type` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `django_content_type` VALUES
(8,'actividades','actividad'),
(10,'actividades','opcion'),
(9,'actividades','pregunta'),
(2,'admin','logentry'),
(4,'auth','group'),
(3,'auth','permission'),
(5,'auth','user'),
(6,'contenttypes','contenttype'),
(1,'projects','project'),
(7,'sessions','session');
/*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `django_migrations`
--

DROP TABLE IF EXISTS `django_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_migrations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `app` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `applied` datetime(6) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `django_migrations`
--

LOCK TABLES `django_migrations` WRITE;
/*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `django_migrations` VALUES
(1,'projects','0001_initial','2025-11-20 18:08:09.872978'),
(2,'projects','0002_project_img','2025-11-20 18:08:09.890424'),
(3,'actividades','0001_initial','2025-11-26 17:34:32.808049'),
(4,'contenttypes','0001_initial','2025-11-26 17:34:32.822063'),
(5,'auth','0001_initial','2025-11-26 17:34:32.979547'),
(6,'admin','0001_initial','2025-11-26 17:34:33.012244'),
(7,'admin','0002_logentry_remove_auto_add','2025-11-26 17:34:33.017025'),
(8,'admin','0003_logentry_add_action_flag_choices','2025-11-26 17:34:33.021525'),
(9,'contenttypes','0002_remove_content_type_name','2025-11-26 17:34:33.048716'),
(10,'auth','0002_alter_permission_name_max_length','2025-11-26 17:34:33.072229'),
(11,'auth','0003_alter_user_email_max_length','2025-11-26 17:34:33.083992'),
(12,'auth','0004_alter_user_username_opts','2025-11-26 17:34:33.088119'),
(13,'auth','0005_alter_user_last_login_null','2025-11-26 17:34:33.102629'),
(14,'auth','0006_require_contenttypes_0002','2025-11-26 17:34:33.103905'),
(15,'auth','0007_alter_validators_add_error_messages','2025-11-26 17:34:33.108141'),
(16,'auth','0008_alter_user_username_max_length','2025-11-26 17:34:33.119068'),
(17,'auth','0009_alter_user_last_name_max_length','2025-11-26 17:34:33.130453'),
(18,'auth','0010_alter_group_name_max_length','2025-11-26 17:34:33.143754'),
(19,'auth','0011_update_proxy_permissions','2025-11-26 17:34:33.149960'),
(20,'auth','0012_alter_user_first_name_max_length','2025-11-26 17:34:33.160823'),
(21,'sessions','0001_initial','2025-11-26 17:34:33.174745');
/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `django_session`
--

DROP TABLE IF EXISTS `django_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_session` (
  `session_key` varchar(40) NOT NULL,
  `session_data` longtext NOT NULL,
  `expire_date` datetime(6) NOT NULL,
  PRIMARY KEY (`session_key`),
  KEY `django_session_expire_date_a5c62663` (`expire_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `django_session`
--

LOCK TABLES `django_session` WRITE;
/*!40000 ALTER TABLE `django_session` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `django_session` VALUES
('c1xdrml1hirozqlq22pgq4e3o38kpx0j','.eJxVjEEOwiAQRe_C2pCBQgGX7nsGwgxTqRqalHZlvLtt0oVu33v_v0VM21ri1niJUxZXocTll2GiJ9dD5Eeq91nSXNdlQnkk8rRNDnPm1-1s_w5KamVfYzDe9ay0sdwD2NA5ZxApK48WCBSaNCZPGlxAn5E73imQMkgwWi0-X8wXN7Q:1vRLAx:VrSr9Dg9RpP81dBtGLyZi5PzGc_6-mXoOIttf1Q5Mwg','2025-12-19 02:04:03.283845'),
('kt1sj416qtblmilqgq9upb2rtyp2gx5z','.eJxVjEEOwiAQRe_C2pCBQgGX7nsGwgxTqRqalHZlvLtt0oVu33v_v0VM21ri1niJUxZXocTll2GiJ9dD5Eeq91nSXNdlQnkk8rRNDnPm1-1s_w5KamVfYzDe9ay0sdwD2NA5ZxApK48WCBSaNCZPGlxAn5E73imQMkgwWi0-X8wXN7Q:1vOJjk:Ytw9o8CMKTzLgSGLCVtQyhV2LYpsA_MVvjI7XueWv6E','2025-12-10 17:55:28.269351'),
('wropd0nb1fqvvbb74g20xppo60zeqar3','.eJxVjEEOwiAQRe_C2pCBQgGX7nsGwgxTqRqalHZlvLtt0oVu33v_v0VM21ri1niJUxZXocTll2GiJ9dD5Eeq91nSXNdlQnkk8rRNDnPm1-1s_w5KamVfYzDe9ay0sdwD2NA5ZxApK48WCBSaNCZPGlxAn5E73imQMkgwWi0-X8wXN7Q:1vPwHc:YkI5Dx9NVFfXGrkFHhwH97cwbIll1KqOWMDsoRpzXXA','2025-12-15 05:17:08.208121');
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `mat_usuario`
--

DROP TABLE IF EXISTS `mat_usuario`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `mat_usuario` (
  `id_usu` int(11) NOT NULL,
  `id_mat` int(11) NOT NULL,
  PRIMARY KEY (`id_usu`,`id_mat`),
  KEY `id_mat` (`id_mat`),
  CONSTRAINT `mat_usuario_ibfk_1` FOREIGN KEY (`id_usu`) REFERENCES `usuarios` (`id_usu`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `mat_usuario_ibfk_2` FOREIGN KEY (`id_mat`) REFERENCES `materias` (`id_mat`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mat_usuario`
--

LOCK TABLES `mat_usuario` WRITE;
/*!40000 ALTER TABLE `mat_usuario` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `mat_usuario` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `materias`
--

DROP TABLE IF EXISTS `materias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `materias` (
  `id_mat` int(11) NOT NULL AUTO_INCREMENT,
  `nom_mat` varchar(100) NOT NULL,
  `des_mat` varchar(255) DEFAULT NULL,
  `tem_mat` text DEFAULT NULL,
  PRIMARY KEY (`id_mat`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `materias`
--

LOCK TABLES `materias` WRITE;
/*!40000 ALTER TABLE `materias` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `materias` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `projects_project`
--

DROP TABLE IF EXISTS `projects_project`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `projects_project` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `nom_mat` varchar(100) NOT NULL,
  `des_mat` longtext NOT NULL,
  `tem_mat` longtext NOT NULL,
  `img` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `projects_project`
--

LOCK TABLES `projects_project` WRITE;
/*!40000 ALTER TABLE `projects_project` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `projects_project` VALUES
(1,'Pensamiento Matemático','En este apartado podrás encontrar todo lo relacionado con matemáticas de primer grado.','Unidad 1.\r\nProbabilidad y estadística\r\nPoblación y muestra\r\nVariables (cualitativas y cuantitativas)\r\nTipos de datos (discretos y continuos)\r\nEscalas de medición (nominal, ordinal, intervalo, razón)','project_images/mate_img.jpg'),
(2,'Lengua y Comunicación','En este apartado podrás encontrar todo lo relacionado con la materia Lengua y comunicación.','Unidad 1. Comprensión lectora\r\n\r\n-Procesos de lectura: prelectura, lectura y poslectura\r\n-Tipos de textos (informativos, narrativos, expositivos, argumentativos, instructivos)\r\n\r\n-Estrategias de comprensión: subrayado, resumen, paráfrasis, cuadros sinópticos y mapas conceptuales\r\n\r\n-Identificación de ideas principales y secundarias\r\n\r\n-Inferencias y lectura crítica\r\n\r\n-Propósito, audiencia y contexto del texto','project_images/lengua_img.jpg'),
(3,'Inglés I','En este apartado podrás encontrar todo lo relacionado con la materia de Ingles I.','Unidad 1. Introducción al idioma\r\nEl alfabeto y pronunciación básica\r\nGreetings & Introductions (saludos y presentaciones)\r\nPersonal information (nombre, edad, nacionalidad, ocupación)\r\nClassroom language (instrucciones en el salón)\r\nVerb to be (afirmativo, negativo, interrogativo)','project_images/ingles_img.png');
/*!40000 ALTER TABLE `projects_project` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `temario_mat`
--

DROP TABLE IF EXISTS `temario_mat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `temario_mat` (
  `id_tem` int(11) NOT NULL AUTO_INCREMENT,
  `nom_tem` varchar(100) NOT NULL,
  `des_tem` varchar(255) DEFAULT NULL,
  `id_mat` int(11) DEFAULT NULL,
  PRIMARY KEY (`id_tem`),
  KEY `id_mat` (`id_mat`),
  CONSTRAINT `temario_mat_ibfk_1` FOREIGN KEY (`id_mat`) REFERENCES `materias` (`id_mat`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temario_mat`
--

LOCK TABLES `temario_mat` WRITE;
/*!40000 ALTER TABLE `temario_mat` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `temario_mat` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `usuarios`
--

DROP TABLE IF EXISTS `usuarios`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `usuarios` (
  `id_usu` int(11) NOT NULL AUTO_INCREMENT,
  `nom_usu` varchar(100) NOT NULL,
  `correo` varchar(100) NOT NULL,
  `con_usu` varchar(100) NOT NULL,
  `num_mat` int(11) DEFAULT 0,
  `punt_total` int(11) DEFAULT 0,
  PRIMARY KEY (`id_usu`),
  UNIQUE KEY `correo` (`correo`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usuarios`
--

LOCK TABLES `usuarios` WRITE;
/*!40000 ALTER TABLE `usuarios` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `usuarios` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!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 */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;

-- Dump completed on 2025-12-07 17:33:03
