Created
September 11, 2018 20:36
-
-
Save jmaupetit/76fe7db4a8314fe1fa10895edf14248e to your computer and use it in GitHub Desktop.
Open edX Hawthorn import database schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64) | |
-- | |
-- Host: localhost Database: edxapp | |
-- ------------------------------------------------------ | |
-- Server version 5.7.21 | |
/*!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 `api_admin_apiaccessconfig` | |
-- | |
DROP TABLE IF EXISTS `api_admin_apiaccessconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `api_admin_apiaccessconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `api_admin_apiaccessconfig` | |
-- | |
LOCK TABLES `api_admin_apiaccessconfig` WRITE; | |
/*!40000 ALTER TABLE `api_admin_apiaccessconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `api_admin_apiaccessconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `api_admin_apiaccessrequest` | |
-- | |
DROP TABLE IF EXISTS `api_admin_apiaccessrequest`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `api_admin_apiaccessrequest` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`status` varchar(255) NOT NULL, | |
`website` varchar(200) NOT NULL, | |
`reason` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
`company_address` varchar(255) NOT NULL, | |
`company_name` varchar(255) NOT NULL, | |
`contacted` tinyint(1) NOT NULL, | |
`site_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `api_admin_apiaccessrequest_user_id_eb0cc217_uniq` (`user_id`), | |
KEY `api_admin_apiaccessrequest_status_f8039aea` (`status`), | |
KEY `api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id` (`site_id`), | |
CONSTRAINT `api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`), | |
CONSTRAINT `api_admin_apiaccessrequest_user_id_eb0cc217_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `api_admin_apiaccessrequest` | |
-- | |
LOCK TABLES `api_admin_apiaccessrequest` WRITE; | |
/*!40000 ALTER TABLE `api_admin_apiaccessrequest` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `api_admin_apiaccessrequest` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_assessment` | |
-- | |
DROP TABLE IF EXISTS `assessment_assessment`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_assessment` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`submission_uuid` varchar(128) NOT NULL, | |
`scored_at` datetime(6) NOT NULL, | |
`scorer_id` varchar(40) NOT NULL, | |
`score_type` varchar(2) NOT NULL, | |
`feedback` longtext NOT NULL, | |
`rubric_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `assessment_assessment_submission_uuid_cf5817c5` (`submission_uuid`), | |
KEY `assessment_assessment_scored_at_a1a213d6` (`scored_at`), | |
KEY `assessment_assessment_scorer_id_ad1a38cb` (`scorer_id`), | |
KEY `assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id` (`rubric_id`), | |
CONSTRAINT `assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_assessment` | |
-- | |
LOCK TABLES `assessment_assessment` WRITE; | |
/*!40000 ALTER TABLE `assessment_assessment` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_assessment` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_assessmentfeedback` | |
-- | |
DROP TABLE IF EXISTS `assessment_assessmentfeedback`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_assessmentfeedback` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`submission_uuid` varchar(128) NOT NULL, | |
`feedback_text` longtext NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `submission_uuid` (`submission_uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_assessmentfeedback` | |
-- | |
LOCK TABLES `assessment_assessmentfeedback` WRITE; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedback` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedback` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_assessmentfeedback_assessments` | |
-- | |
DROP TABLE IF EXISTS `assessment_assessmentfeedback_assessments`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_assessmentfeedback_assessments` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`assessmentfeedback_id` int(11) NOT NULL, | |
`assessment_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `assessment_assessmentfee_assessmentfeedback_id_as_f8246578_uniq` (`assessmentfeedback_id`,`assessment_id`), | |
KEY `assessment_assessmen_assessment_id_033f1121_fk_assessmen` (`assessment_id`), | |
CONSTRAINT `assessment_assessmen_assessment_id_033f1121_fk_assessmen` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`), | |
CONSTRAINT `assessment_assessmen_assessmentfeedback_i_6634a3b4_fk_assessmen` FOREIGN KEY (`assessmentfeedback_id`) REFERENCES `assessment_assessmentfeedback` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_assessmentfeedback_assessments` | |
-- | |
LOCK TABLES `assessment_assessmentfeedback_assessments` WRITE; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedback_assessments` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedback_assessments` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_assessmentfeedback_options` | |
-- | |
DROP TABLE IF EXISTS `assessment_assessmentfeedback_options`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_assessmentfeedback_options` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`assessmentfeedback_id` int(11) NOT NULL, | |
`assessmentfeedbackoption_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `assessment_assessmentfee_assessmentfeedback_id_as_4e554cc7_uniq` (`assessmentfeedback_id`,`assessmentfeedbackoption_id`), | |
KEY `assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen` (`assessmentfeedbackoption_id`), | |
CONSTRAINT `assessment_assessmen_assessmentfeedback_i_004e1bf0_fk_assessmen` FOREIGN KEY (`assessmentfeedback_id`) REFERENCES `assessment_assessmentfeedback` (`id`), | |
CONSTRAINT `assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen` FOREIGN KEY (`assessmentfeedbackoption_id`) REFERENCES `assessment_assessmentfeedbackoption` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_assessmentfeedback_options` | |
-- | |
LOCK TABLES `assessment_assessmentfeedback_options` WRITE; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedback_options` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedback_options` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_assessmentfeedbackoption` | |
-- | |
DROP TABLE IF EXISTS `assessment_assessmentfeedbackoption`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_assessmentfeedbackoption` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`text` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `text` (`text`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_assessmentfeedbackoption` | |
-- | |
LOCK TABLES `assessment_assessmentfeedbackoption` WRITE; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedbackoption` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_assessmentfeedbackoption` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_assessmentpart` | |
-- | |
DROP TABLE IF EXISTS `assessment_assessmentpart`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_assessmentpart` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`feedback` longtext NOT NULL, | |
`assessment_id` int(11) NOT NULL, | |
`criterion_id` int(11) NOT NULL, | |
`option_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `assessment_assessmen_assessment_id_de1999cd_fk_assessmen` (`assessment_id`), | |
KEY `assessment_assessmen_criterion_id_5bc40925_fk_assessmen` (`criterion_id`), | |
KEY `assessment_assessmen_option_id_dd35c2c5_fk_assessmen` (`option_id`), | |
CONSTRAINT `assessment_assessmen_assessment_id_de1999cd_fk_assessmen` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`), | |
CONSTRAINT `assessment_assessmen_criterion_id_5bc40925_fk_assessmen` FOREIGN KEY (`criterion_id`) REFERENCES `assessment_criterion` (`id`), | |
CONSTRAINT `assessment_assessmen_option_id_dd35c2c5_fk_assessmen` FOREIGN KEY (`option_id`) REFERENCES `assessment_criterionoption` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_assessmentpart` | |
-- | |
LOCK TABLES `assessment_assessmentpart` WRITE; | |
/*!40000 ALTER TABLE `assessment_assessmentpart` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_assessmentpart` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_criterion` | |
-- | |
DROP TABLE IF EXISTS `assessment_criterion`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_criterion` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(100) NOT NULL, | |
`label` varchar(100) NOT NULL, | |
`order_num` int(10) unsigned NOT NULL, | |
`prompt` longtext NOT NULL, | |
`rubric_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id` (`rubric_id`), | |
CONSTRAINT `assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_criterion` | |
-- | |
LOCK TABLES `assessment_criterion` WRITE; | |
/*!40000 ALTER TABLE `assessment_criterion` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_criterion` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_criterionoption` | |
-- | |
DROP TABLE IF EXISTS `assessment_criterionoption`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_criterionoption` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`order_num` int(10) unsigned NOT NULL, | |
`points` int(10) unsigned NOT NULL, | |
`name` varchar(100) NOT NULL, | |
`label` varchar(100) NOT NULL, | |
`explanation` longtext NOT NULL, | |
`criterion_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `assessment_criterion_criterion_id_53928be7_fk_assessmen` (`criterion_id`), | |
CONSTRAINT `assessment_criterion_criterion_id_53928be7_fk_assessmen` FOREIGN KEY (`criterion_id`) REFERENCES `assessment_criterion` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_criterionoption` | |
-- | |
LOCK TABLES `assessment_criterionoption` WRITE; | |
/*!40000 ALTER TABLE `assessment_criterionoption` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_criterionoption` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_peerworkflow` | |
-- | |
DROP TABLE IF EXISTS `assessment_peerworkflow`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_peerworkflow` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`student_id` varchar(40) NOT NULL, | |
`item_id` varchar(128) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`submission_uuid` varchar(128) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`completed_at` datetime(6) DEFAULT NULL, | |
`grading_completed_at` datetime(6) DEFAULT NULL, | |
`cancelled_at` datetime(6) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `submission_uuid` (`submission_uuid`), | |
KEY `assessment_peerworkflow_student_id_9382ae54` (`student_id`), | |
KEY `assessment_peerworkflow_item_id_c17d799e` (`item_id`), | |
KEY `assessment_peerworkflow_course_id_875599e3` (`course_id`), | |
KEY `assessment_peerworkflow_created_at_b8aaf4a5` (`created_at`), | |
KEY `assessment_peerworkflow_completed_at_681f19e1` (`completed_at`), | |
KEY `assessment_peerworkflow_grading_completed_at_33e2560c` (`grading_completed_at`), | |
KEY `assessment_peerworkflow_cancelled_at_0e258929` (`cancelled_at`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_peerworkflow` | |
-- | |
LOCK TABLES `assessment_peerworkflow` WRITE; | |
/*!40000 ALTER TABLE `assessment_peerworkflow` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_peerworkflow` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_peerworkflowitem` | |
-- | |
DROP TABLE IF EXISTS `assessment_peerworkflowitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_peerworkflowitem` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`submission_uuid` varchar(128) NOT NULL, | |
`started_at` datetime(6) NOT NULL, | |
`scored` tinyint(1) NOT NULL, | |
`assessment_id` int(11) DEFAULT NULL, | |
`author_id` int(11) NOT NULL, | |
`scorer_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen` (`assessment_id`), | |
KEY `assessment_peerworkf_author_id_0e3ed804_fk_assessmen` (`author_id`), | |
KEY `assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen` (`scorer_id`), | |
KEY `assessment_peerworkflowitem_submission_uuid_edd446aa` (`submission_uuid`), | |
KEY `assessment_peerworkflowitem_started_at_8644e7a0` (`started_at`), | |
CONSTRAINT `assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`), | |
CONSTRAINT `assessment_peerworkf_author_id_0e3ed804_fk_assessmen` FOREIGN KEY (`author_id`) REFERENCES `assessment_peerworkflow` (`id`), | |
CONSTRAINT `assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen` FOREIGN KEY (`scorer_id`) REFERENCES `assessment_peerworkflow` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_peerworkflowitem` | |
-- | |
LOCK TABLES `assessment_peerworkflowitem` WRITE; | |
/*!40000 ALTER TABLE `assessment_peerworkflowitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_peerworkflowitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_rubric` | |
-- | |
DROP TABLE IF EXISTS `assessment_rubric`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_rubric` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`content_hash` varchar(40) NOT NULL, | |
`structure_hash` varchar(40) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `content_hash` (`content_hash`), | |
KEY `assessment_rubric_structure_hash_fb456373` (`structure_hash`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_rubric` | |
-- | |
LOCK TABLES `assessment_rubric` WRITE; | |
/*!40000 ALTER TABLE `assessment_rubric` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_rubric` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_staffworkflow` | |
-- | |
DROP TABLE IF EXISTS `assessment_staffworkflow`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_staffworkflow` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`scorer_id` varchar(40) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`item_id` varchar(128) NOT NULL, | |
`submission_uuid` varchar(128) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`grading_completed_at` datetime(6) DEFAULT NULL, | |
`grading_started_at` datetime(6) DEFAULT NULL, | |
`cancelled_at` datetime(6) DEFAULT NULL, | |
`assessment` varchar(128) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `submission_uuid` (`submission_uuid`), | |
KEY `assessment_staffworkflow_scorer_id_ae799ebc` (`scorer_id`), | |
KEY `assessment_staffworkflow_course_id_3f18693d` (`course_id`), | |
KEY `assessment_staffworkflow_item_id_4fa3697b` (`item_id`), | |
KEY `assessment_staffworkflow_created_at_a253bc02` (`created_at`), | |
KEY `assessment_staffworkflow_grading_completed_at_acd0199f` (`grading_completed_at`), | |
KEY `assessment_staffworkflow_grading_started_at_90f99005` (`grading_started_at`), | |
KEY `assessment_staffworkflow_cancelled_at_bc8f93d5` (`cancelled_at`), | |
KEY `assessment_staffworkflow_assessment_7c1dcc5d` (`assessment`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_staffworkflow` | |
-- | |
LOCK TABLES `assessment_staffworkflow` WRITE; | |
/*!40000 ALTER TABLE `assessment_staffworkflow` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_staffworkflow` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_studenttrainingworkflow` | |
-- | |
DROP TABLE IF EXISTS `assessment_studenttrainingworkflow`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_studenttrainingworkflow` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`submission_uuid` varchar(128) NOT NULL, | |
`student_id` varchar(40) NOT NULL, | |
`item_id` varchar(128) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `submission_uuid` (`submission_uuid`), | |
KEY `assessment_studenttrainingworkflow_student_id_ea8fdfa8` (`student_id`), | |
KEY `assessment_studenttrainingworkflow_item_id_f5812a25` (`item_id`), | |
KEY `assessment_studenttrainingworkflow_course_id_a14d6cde` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_studenttrainingworkflow` | |
-- | |
LOCK TABLES `assessment_studenttrainingworkflow` WRITE; | |
/*!40000 ALTER TABLE `assessment_studenttrainingworkflow` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_studenttrainingworkflow` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_studenttrainingworkflowitem` | |
-- | |
DROP TABLE IF EXISTS `assessment_studenttrainingworkflowitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_studenttrainingworkflowitem` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`order_num` int(10) unsigned NOT NULL, | |
`started_at` datetime(6) NOT NULL, | |
`completed_at` datetime(6) DEFAULT NULL, | |
`training_example_id` int(11) NOT NULL, | |
`workflow_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `assessment_studenttraini_workflow_id_order_num_1ab60238_uniq` (`workflow_id`,`order_num`), | |
KEY `assessment_studenttr_training_example_id_881dddbd_fk_assessmen` (`training_example_id`), | |
CONSTRAINT `assessment_studenttr_training_example_id_881dddbd_fk_assessmen` FOREIGN KEY (`training_example_id`) REFERENCES `assessment_trainingexample` (`id`), | |
CONSTRAINT `assessment_studenttr_workflow_id_a75a9a2e_fk_assessmen` FOREIGN KEY (`workflow_id`) REFERENCES `assessment_studenttrainingworkflow` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_studenttrainingworkflowitem` | |
-- | |
LOCK TABLES `assessment_studenttrainingworkflowitem` WRITE; | |
/*!40000 ALTER TABLE `assessment_studenttrainingworkflowitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_studenttrainingworkflowitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_trainingexample` | |
-- | |
DROP TABLE IF EXISTS `assessment_trainingexample`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_trainingexample` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`raw_answer` longtext NOT NULL, | |
`content_hash` varchar(40) NOT NULL, | |
`rubric_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `content_hash` (`content_hash`), | |
KEY `assessment_traininge_rubric_id_cfb4afc3_fk_assessmen` (`rubric_id`), | |
CONSTRAINT `assessment_traininge_rubric_id_cfb4afc3_fk_assessmen` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_trainingexample` | |
-- | |
LOCK TABLES `assessment_trainingexample` WRITE; | |
/*!40000 ALTER TABLE `assessment_trainingexample` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_trainingexample` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `assessment_trainingexample_options_selected` | |
-- | |
DROP TABLE IF EXISTS `assessment_trainingexample_options_selected`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `assessment_trainingexample_options_selected` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`trainingexample_id` int(11) NOT NULL, | |
`criterionoption_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `assessment_trainingexamp_trainingexample_id_crite_4b6b8b90_uniq` (`trainingexample_id`,`criterionoption_id`), | |
KEY `assessment_traininge_criterionoption_id_de6716f1_fk_assessmen` (`criterionoption_id`), | |
CONSTRAINT `assessment_traininge_criterionoption_id_de6716f1_fk_assessmen` FOREIGN KEY (`criterionoption_id`) REFERENCES `assessment_criterionoption` (`id`), | |
CONSTRAINT `assessment_traininge_trainingexample_id_7a04b572_fk_assessmen` FOREIGN KEY (`trainingexample_id`) REFERENCES `assessment_trainingexample` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `assessment_trainingexample_options_selected` | |
-- | |
LOCK TABLES `assessment_trainingexample_options_selected` WRITE; | |
/*!40000 ALTER TABLE `assessment_trainingexample_options_selected` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `assessment_trainingexample_options_selected` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
CREATE TABLE `auth_group` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(80) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!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 */; | |
INSERT INTO `auth_group` VALUES (1,'API Access Request Approvers'); | |
/*!40000 ALTER TABLE `auth_group` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
CREATE TABLE `auth_group_permissions` ( | |
`id` int(11) 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=latin1; | |
/*!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 */; | |
/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
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=1050 DEFAULT CHARSET=latin1; | |
/*!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 */; | |
INSERT INTO `auth_permission` VALUES (1,'Can add permission',2,'add_permission'),(2,'Can change permission',2,'change_permission'),(3,'Can delete permission',2,'delete_permission'),(4,'Can add user',3,'add_user'),(5,'Can change user',3,'change_user'),(6,'Can delete user',3,'delete_user'),(7,'Can add group',4,'add_group'),(8,'Can change group',4,'change_group'),(9,'Can delete group',4,'delete_group'),(10,'Can add content type',5,'add_contenttype'),(11,'Can change content type',5,'change_contenttype'),(12,'Can delete content type',5,'delete_contenttype'),(13,'Can add redirect',6,'add_redirect'),(14,'Can change redirect',6,'change_redirect'),(15,'Can delete redirect',6,'delete_redirect'),(16,'Can add session',7,'add_session'),(17,'Can change session',7,'change_session'),(18,'Can delete session',7,'delete_session'),(19,'Can add site',8,'add_site'),(20,'Can change site',8,'change_site'),(21,'Can delete site',8,'delete_site'),(22,'Can add saved group result',9,'add_tasksetmeta'),(23,'Can change saved group result',9,'change_tasksetmeta'),(24,'Can delete saved group result',9,'delete_tasksetmeta'),(25,'Can add crontab',10,'add_crontabschedule'),(26,'Can change crontab',10,'change_crontabschedule'),(27,'Can delete crontab',10,'delete_crontabschedule'),(28,'Can add worker',11,'add_workerstate'),(29,'Can change worker',11,'change_workerstate'),(30,'Can delete worker',11,'delete_workerstate'),(31,'Can add task state',12,'add_taskmeta'),(32,'Can change task state',12,'change_taskmeta'),(33,'Can delete task state',12,'delete_taskmeta'),(34,'Can add interval',13,'add_intervalschedule'),(35,'Can change interval',13,'change_intervalschedule'),(36,'Can delete interval',13,'delete_intervalschedule'),(37,'Can add task',14,'add_taskstate'),(38,'Can change task',14,'change_taskstate'),(39,'Can delete task',14,'delete_taskstate'),(40,'Can add periodic task',15,'add_periodictask'),(41,'Can change periodic task',15,'change_periodictask'),(42,'Can delete periodic task',15,'delete_periodictask'),(43,'Can add periodic tasks',16,'add_periodictasks'),(44,'Can change periodic tasks',16,'change_periodictasks'),(45,'Can delete periodic tasks',16,'delete_periodictasks'),(46,'Can add sample',17,'add_sample'),(47,'Can change sample',17,'change_sample'),(48,'Can delete sample',17,'delete_sample'),(49,'Can add switch',18,'add_switch'),(50,'Can change switch',18,'change_switch'),(51,'Can delete switch',18,'delete_switch'),(52,'Can add flag',19,'add_flag'),(53,'Can change flag',19,'change_flag'),(54,'Can delete flag',19,'delete_flag'),(55,'Can add global status message',20,'add_globalstatusmessage'),(56,'Can change global status message',20,'change_globalstatusmessage'),(57,'Can delete global status message',20,'delete_globalstatusmessage'),(58,'Can add course message',21,'add_coursemessage'),(59,'Can change course message',21,'change_coursemessage'),(60,'Can delete course message',21,'delete_coursemessage'),(61,'Can add asset base url config',22,'add_assetbaseurlconfig'),(62,'Can change asset base url config',22,'change_assetbaseurlconfig'),(63,'Can delete asset base url config',22,'delete_assetbaseurlconfig'),(64,'Can add asset excluded extensions config',23,'add_assetexcludedextensionsconfig'),(65,'Can change asset excluded extensions config',23,'change_assetexcludedextensionsconfig'),(66,'Can delete asset excluded extensions config',23,'delete_assetexcludedextensionsconfig'),(67,'Can add cdn user agents config',24,'add_cdnuseragentsconfig'),(68,'Can change cdn user agents config',24,'change_cdnuseragentsconfig'),(69,'Can delete cdn user agents config',24,'delete_cdnuseragentsconfig'),(70,'Can add course asset cache ttl config',25,'add_courseassetcachettlconfig'),(71,'Can change course asset cache ttl config',25,'change_courseassetcachettlconfig'),(72,'Can delete course asset cache ttl config',25,'delete_courseassetcachettlconfig'),(73,'Can add site configuration',26,'add_siteconfiguration'),(74,'Can change site configuration',26,'change_siteconfiguration'),(75,'Can delete site configuration',26,'delete_siteconfiguration'),(76,'Can add site configuration history',27,'add_siteconfigurationhistory'),(77,'Can change site configuration history',27,'change_siteconfigurationhistory'),(78,'Can delete site configuration history',27,'delete_siteconfigurationhistory'),(79,'Can add transcript migration setting',28,'add_transcriptmigrationsetting'),(80,'Can change transcript migration setting',28,'change_transcriptmigrationsetting'),(81,'Can delete transcript migration setting',28,'delete_transcriptmigrationsetting'),(82,'Can add video transcript enabled flag',29,'add_videotranscriptenabledflag'),(83,'Can change video transcript enabled flag',29,'change_videotranscriptenabledflag'),(84,'Can delete video transcript enabled flag',29,'delete_videotranscriptenabledflag'),(85,'Can add hls playback enabled flag',30,'add_hlsplaybackenabledflag'),(86,'Can change hls playback enabled flag',30,'change_hlsplaybackenabledflag'),(87,'Can delete hls playback enabled flag',30,'delete_hlsplaybackenabledflag'),(88,'Can add course hls playback enabled flag',31,'add_coursehlsplaybackenabledflag'),(89,'Can change course hls playback enabled flag',31,'change_coursehlsplaybackenabledflag'),(90,'Can delete course hls playback enabled flag',31,'delete_coursehlsplaybackenabledflag'),(91,'Can add course video transcript enabled flag',32,'add_coursevideotranscriptenabledflag'),(92,'Can change course video transcript enabled flag',32,'change_coursevideotranscriptenabledflag'),(93,'Can delete course video transcript enabled flag',32,'delete_coursevideotranscriptenabledflag'),(94,'Can add course video uploads enabled by default',33,'add_coursevideouploadsenabledbydefault'),(95,'Can change course video uploads enabled by default',33,'change_coursevideouploadsenabledbydefault'),(96,'Can delete course video uploads enabled by default',33,'delete_coursevideouploadsenabledbydefault'),(97,'Can add video pipeline integration',34,'add_videopipelineintegration'),(98,'Can change video pipeline integration',34,'change_videopipelineintegration'),(99,'Can delete video pipeline integration',34,'delete_videopipelineintegration'),(100,'Can add video uploads enabled by default',35,'add_videouploadsenabledbydefault'),(101,'Can change video uploads enabled by default',35,'change_videouploadsenabledbydefault'),(102,'Can delete video uploads enabled by default',35,'delete_videouploadsenabledbydefault'),(103,'Can add x module student prefs field',36,'add_xmodulestudentprefsfield'),(104,'Can change x module student prefs field',36,'change_xmodulestudentprefsfield'),(105,'Can delete x module student prefs field',36,'delete_xmodulestudentprefsfield'),(106,'Can add org dynamic upgrade deadline configuration',37,'add_orgdynamicupgradedeadlineconfiguration'),(107,'Can change org dynamic upgrade deadline configuration',37,'change_orgdynamicupgradedeadlineconfiguration'),(108,'Can delete org dynamic upgrade deadline configuration',37,'delete_orgdynamicupgradedeadlineconfiguration'),(109,'Can add offline computed grade',38,'add_offlinecomputedgrade'),(110,'Can change offline computed grade',38,'change_offlinecomputedgrade'),(111,'Can delete offline computed grade',38,'delete_offlinecomputedgrade'),(112,'Can add course dynamic upgrade deadline configuration',39,'add_coursedynamicupgradedeadlineconfiguration'),(113,'Can change course dynamic upgrade deadline configuration',39,'change_coursedynamicupgradedeadlineconfiguration'),(114,'Can delete course dynamic upgrade deadline configuration',39,'delete_coursedynamicupgradedeadlineconfiguration'),(115,'Can add x module student info field',40,'add_xmodulestudentinfofield'),(116,'Can change x module student info field',40,'change_xmodulestudentinfofield'),(117,'Can delete x module student info field',40,'delete_xmodulestudentinfofield'),(118,'Can add offline computed grade log',41,'add_offlinecomputedgradelog'),(119,'Can change offline computed grade log',41,'change_offlinecomputedgradelog'),(120,'Can delete offline computed grade log',41,'delete_offlinecomputedgradelog'),(121,'Can add student module history',42,'add_studentmodulehistory'),(122,'Can change student module history',42,'change_studentmodulehistory'),(123,'Can delete student module history',42,'delete_studentmodulehistory'),(124,'Can add x module user state summary field',43,'add_xmoduleuserstatesummaryfield'),(125,'Can change x module user state summary field',43,'change_xmoduleuserstatesummaryfield'),(126,'Can delete x module user state summary field',43,'delete_xmoduleuserstatesummaryfield'),(127,'Can add student module',44,'add_studentmodule'),(128,'Can change student module',44,'change_studentmodule'),(129,'Can delete student module',44,'delete_studentmodule'),(130,'Can add dynamic upgrade deadline configuration',45,'add_dynamicupgradedeadlineconfiguration'),(131,'Can change dynamic upgrade deadline configuration',45,'change_dynamicupgradedeadlineconfiguration'),(132,'Can delete dynamic upgrade deadline configuration',45,'delete_dynamicupgradedeadlineconfiguration'),(133,'Can add student field override',46,'add_studentfieldoverride'),(134,'Can change student field override',46,'change_studentfieldoverride'),(135,'Can delete student field override',46,'delete_studentfieldoverride'),(136,'Can add anonymous user id',47,'add_anonymoususerid'),(137,'Can change anonymous user id',47,'change_anonymoususerid'),(138,'Can delete anonymous user id',47,'delete_anonymoususerid'),(139,'Can add manual enrollment audit',48,'add_manualenrollmentaudit'),(140,'Can change manual enrollment audit',48,'change_manualenrollmentaudit'),(141,'Can delete manual enrollment audit',48,'delete_manualenrollmentaudit'),(142,'Can add course enrollment',49,'add_courseenrollment'),(143,'Can change course enrollment',49,'change_courseenrollment'),(144,'Can delete course enrollment',49,'delete_courseenrollment'),(145,'Can add user profile',50,'add_userprofile'),(146,'Can change user profile',50,'change_userprofile'),(147,'Can delete user profile',50,'delete_userprofile'),(148,'Can deactivate, but NOT delete users',50,'can_deactivate_users'),(149,'Can add entrance exam configuration',51,'add_entranceexamconfiguration'),(150,'Can change entrance exam configuration',51,'change_entranceexamconfiguration'),(151,'Can delete entrance exam configuration',51,'delete_entranceexamconfiguration'),(152,'Can add registration',52,'add_registration'),(153,'Can change registration',52,'change_registration'),(154,'Can delete registration',52,'delete_registration'),(155,'Can add logout view configuration',53,'add_logoutviewconfiguration'),(156,'Can change logout view configuration',53,'change_logoutviewconfiguration'),(157,'Can delete logout view configuration',53,'delete_logoutviewconfiguration'),(158,'Can add password history',54,'add_passwordhistory'),(159,'Can change password history',54,'change_passwordhistory'),(160,'Can delete password history',54,'delete_passwordhistory'),(161,'Can add user test group',55,'add_usertestgroup'),(162,'Can change user test group',55,'change_usertestgroup'),(163,'Can delete user test group',55,'delete_usertestgroup'),(164,'Can add login failures',56,'add_loginfailures'),(165,'Can change login failures',56,'change_loginfailures'),(166,'Can delete login failures',56,'delete_loginfailures'),(167,'Can add dashboard configuration',57,'add_dashboardconfiguration'),(168,'Can change dashboard configuration',57,'change_dashboardconfiguration'),(169,'Can delete dashboard configuration',57,'delete_dashboardconfiguration'),(170,'Can add user attribute',58,'add_userattribute'),(171,'Can change user attribute',58,'change_userattribute'),(172,'Can delete user attribute',58,'delete_userattribute'),(173,'Can add course enrollment allowed',59,'add_courseenrollmentallowed'),(174,'Can change course enrollment allowed',59,'change_courseenrollmentallowed'),(175,'Can delete course enrollment allowed',59,'delete_courseenrollmentallowed'),(176,'Can add user standing',60,'add_userstanding'),(177,'Can change user standing',60,'change_userstanding'),(178,'Can delete user standing',60,'delete_userstanding'),(179,'Can add course enrollment attribute',61,'add_courseenrollmentattribute'),(180,'Can change course enrollment attribute',61,'change_courseenrollmentattribute'),(181,'Can delete course enrollment attribute',61,'delete_courseenrollmentattribute'),(182,'Can add enrollment refund configuration',62,'add_enrollmentrefundconfiguration'),(183,'Can change enrollment refund configuration',62,'change_enrollmentrefundconfiguration'),(184,'Can delete enrollment refund configuration',62,'delete_enrollmentrefundconfiguration'),(185,'Can add social link',63,'add_sociallink'),(186,'Can change social link',63,'change_sociallink'),(187,'Can delete social link',63,'delete_sociallink'),(188,'Can add pending name change',64,'add_pendingnamechange'),(189,'Can change pending name change',64,'change_pendingnamechange'),(190,'Can delete pending name change',64,'delete_pendingnamechange'),(191,'Can add language proficiency',65,'add_languageproficiency'),(192,'Can change language proficiency',65,'change_languageproficiency'),(193,'Can delete language proficiency',65,'delete_languageproficiency'),(194,'Can add pending email change',66,'add_pendingemailchange'),(195,'Can change pending email change',66,'change_pendingemailchange'),(196,'Can delete pending email change',66,'delete_pendingemailchange'),(197,'Can add linked in add to profile configuration',67,'add_linkedinaddtoprofileconfiguration'),(198,'Can change linked in add to profile configuration',67,'change_linkedinaddtoprofileconfiguration'),(199,'Can delete linked in add to profile configuration',67,'delete_linkedinaddtoprofileconfiguration'),(200,'Can add registration cookie configuration',68,'add_registrationcookieconfiguration'),(201,'Can change registration cookie configuration',68,'change_registrationcookieconfiguration'),(202,'Can delete registration cookie configuration',68,'delete_registrationcookieconfiguration'),(203,'Can add course access role',69,'add_courseaccessrole'),(204,'Can change course access role',69,'change_courseaccessrole'),(205,'Can delete course access role',69,'delete_courseaccessrole'),(206,'Can add user signup source',70,'add_usersignupsource'),(207,'Can change user signup source',70,'change_usersignupsource'),(208,'Can delete user signup source',70,'delete_usersignupsource'),(209,'Can add tracking log',71,'add_trackinglog'),(210,'Can change tracking log',71,'change_trackinglog'),(211,'Can delete tracking log',71,'delete_trackinglog'),(212,'Can add rate limit configuration',72,'add_ratelimitconfiguration'),(213,'Can change rate limit configuration',72,'change_ratelimitconfiguration'),(214,'Can delete rate limit configuration',72,'delete_ratelimitconfiguration'),(215,'Can add certificate invalidation',73,'add_certificateinvalidation'),(216,'Can change certificate invalidation',73,'change_certificateinvalidation'),(217,'Can delete certificate invalidation',73,'delete_certificateinvalidation'),(218,'Can add example certificate',74,'add_examplecertificate'),(219,'Can change example certificate',74,'change_examplecertificate'),(220,'Can delete example certificate',74,'delete_examplecertificate'),(221,'Can add certificate generation history',75,'add_certificategenerationhistory'),(222,'Can change certificate generation history',75,'change_certificategenerationhistory'),(223,'Can delete certificate generation history',75,'delete_certificategenerationhistory'),(224,'Can add example certificate set',76,'add_examplecertificateset'),(225,'Can change example certificate set',76,'change_examplecertificateset'),(226,'Can delete example certificate set',76,'delete_examplecertificateset'),(227,'Can add generated certificate',77,'add_generatedcertificate'),(228,'Can change generated certificate',77,'change_generatedcertificate'),(229,'Can delete generated certificate',77,'delete_generatedcertificate'),(230,'Can add certificate generation configuration',78,'add_certificategenerationconfiguration'),(231,'Can change certificate generation configuration',78,'change_certificategenerationconfiguration'),(232,'Can delete certificate generation configuration',78,'delete_certificategenerationconfiguration'),(233,'Can add certificate generation course setting',79,'add_certificategenerationcoursesetting'),(234,'Can change certificate generation course setting',79,'change_certificategenerationcoursesetting'),(235,'Can delete certificate generation course setting',79,'delete_certificategenerationcoursesetting'),(236,'Can add certificate template asset',80,'add_certificatetemplateasset'),(237,'Can change certificate template asset',80,'change_certificatetemplateasset'),(238,'Can delete certificate template asset',80,'delete_certificatetemplateasset'),(239,'Can add certificate html view configuration',81,'add_certificatehtmlviewconfiguration'),(240,'Can change certificate html view configuration',81,'change_certificatehtmlviewconfiguration'),(241,'Can delete certificate html view configuration',81,'delete_certificatehtmlviewconfiguration'),(242,'Can add certificate whitelist',82,'add_certificatewhitelist'),(243,'Can change certificate whitelist',82,'change_certificatewhitelist'),(244,'Can delete certificate whitelist',82,'delete_certificatewhitelist'),(245,'Can add certificate template',83,'add_certificatetemplate'),(246,'Can change certificate template',83,'change_certificatetemplate'),(247,'Can delete certificate template',83,'delete_certificatetemplate'),(248,'Can add grade report setting',84,'add_gradereportsetting'),(249,'Can change grade report setting',84,'change_gradereportsetting'),(250,'Can delete grade report setting',84,'delete_gradereportsetting'),(251,'Can add instructor task',85,'add_instructortask'),(252,'Can change instructor task',85,'change_instructortask'),(253,'Can delete instructor task',85,'delete_instructortask'),(254,'Can add course user group partition group',86,'add_courseusergrouppartitiongroup'),(255,'Can change course user group partition group',86,'change_courseusergrouppartitiongroup'),(256,'Can delete course user group partition group',86,'delete_courseusergrouppartitiongroup'),(257,'Can add course user group',87,'add_courseusergroup'),(258,'Can change course user group',87,'change_courseusergroup'),(259,'Can delete course user group',87,'delete_courseusergroup'),(260,'Can add unregistered learner cohort assignments',88,'add_unregisteredlearnercohortassignments'),(261,'Can change unregistered learner cohort assignments',88,'change_unregisteredlearnercohortassignments'),(262,'Can delete unregistered learner cohort assignments',88,'delete_unregisteredlearnercohortassignments'),(263,'Can add course cohort',89,'add_coursecohort'),(264,'Can change course cohort',89,'change_coursecohort'),(265,'Can delete course cohort',89,'delete_coursecohort'),(266,'Can add course cohorts settings',90,'add_coursecohortssettings'),(267,'Can change course cohorts settings',90,'change_coursecohortssettings'),(268,'Can delete course cohorts settings',90,'delete_coursecohortssettings'),(269,'Can add cohort membership',91,'add_cohortmembership'),(270,'Can change cohort membership',91,'change_cohortmembership'),(271,'Can delete cohort membership',91,'delete_cohortmembership'),(272,'Can add optout',92,'add_optout'),(273,'Can change optout',92,'change_optout'),(274,'Can delete optout',92,'delete_optout'),(275,'Can add target',93,'add_target'),(276,'Can change target',93,'change_target'),(277,'Can delete target',93,'delete_target'),(278,'Can add course mode target',94,'add_coursemodetarget'),(279,'Can change course mode target',94,'change_coursemodetarget'),(280,'Can delete course mode target',94,'delete_coursemodetarget'),(281,'Can add course email template',95,'add_courseemailtemplate'),(282,'Can change course email template',95,'change_courseemailtemplate'),(283,'Can delete course email template',95,'delete_courseemailtemplate'),(284,'Can add course authorization',96,'add_courseauthorization'),(285,'Can change course authorization',96,'change_courseauthorization'),(286,'Can delete course authorization',96,'delete_courseauthorization'),(287,'Can add bulk email flag',97,'add_bulkemailflag'),(288,'Can change bulk email flag',97,'change_bulkemailflag'),(289,'Can delete bulk email flag',97,'delete_bulkemailflag'),(290,'Can add course email',98,'add_courseemail'),(291,'Can change course email',98,'change_courseemail'),(292,'Can delete course email',98,'delete_courseemail'),(293,'Can add cohort target',99,'add_cohorttarget'),(294,'Can change cohort target',99,'change_cohorttarget'),(295,'Can delete cohort target',99,'delete_cohorttarget'),(296,'Can add branding api config',100,'add_brandingapiconfig'),(297,'Can change branding api config',100,'change_brandingapiconfig'),(298,'Can delete branding api config',100,'delete_brandingapiconfig'),(299,'Can add branding info config',101,'add_brandinginfoconfig'),(300,'Can change branding info config',101,'change_brandinginfoconfig'),(301,'Can delete branding info config',101,'delete_brandinginfoconfig'),(302,'Can add external auth map',102,'add_externalauthmap'),(303,'Can change external auth map',102,'change_externalauthmap'),(304,'Can delete external auth map',102,'delete_externalauthmap'),(305,'Can add user open id',103,'add_useropenid'),(306,'Can change user open id',103,'change_useropenid'),(307,'Can delete user open id',103,'delete_useropenid'),(308,'The OpenID has been verified',103,'account_verified'),(309,'Can add association',104,'add_association'),(310,'Can change association',104,'change_association'),(311,'Can delete association',104,'delete_association'),(312,'Can add nonce',105,'add_nonce'),(313,'Can change nonce',105,'change_nonce'),(314,'Can delete nonce',105,'delete_nonce'),(315,'Can add client',106,'add_client'),(316,'Can change client',106,'change_client'),(317,'Can delete client',106,'delete_client'),(318,'Can add grant',107,'add_grant'),(319,'Can change grant',107,'change_grant'),(320,'Can delete grant',107,'delete_grant'),(321,'Can add refresh token',108,'add_refreshtoken'),(322,'Can change refresh token',108,'change_refreshtoken'),(323,'Can delete refresh token',108,'delete_refreshtoken'),(324,'Can add access token',109,'add_accesstoken'),(325,'Can change access token',109,'change_accesstoken'),(326,'Can delete access token',109,'delete_accesstoken'),(327,'Can add trusted client',110,'add_trustedclient'),(328,'Can change trusted client',110,'change_trustedclient'),(329,'Can delete trusted client',110,'delete_trustedclient'),(330,'Can add grant',111,'add_grant'),(331,'Can change grant',111,'change_grant'),(332,'Can delete grant',111,'delete_grant'),(333,'Can add application',112,'add_application'),(334,'Can change application',112,'change_application'),(335,'Can delete application',112,'delete_application'),(336,'Can add refresh token',113,'add_refreshtoken'),(337,'Can change refresh token',113,'change_refreshtoken'),(338,'Can delete refresh token',113,'delete_refreshtoken'),(339,'Can add access token',114,'add_accesstoken'),(340,'Can change access token',114,'change_accesstoken'),(341,'Can delete access token',114,'delete_accesstoken'),(342,'Can add application organization',115,'add_applicationorganization'),(343,'Can change application organization',115,'change_applicationorganization'),(344,'Can delete application organization',115,'delete_applicationorganization'),(345,'Can add application access',116,'add_applicationaccess'),(346,'Can change application access',116,'change_applicationaccess'),(347,'Can delete application access',116,'delete_applicationaccess'),(348,'Can add restricted application',117,'add_restrictedapplication'),(349,'Can change restricted application',117,'change_restrictedapplication'),(350,'Can delete restricted application',117,'delete_restrictedapplication'),(351,'Can add Provider Configuration (OAuth)',118,'add_oauth2providerconfig'),(352,'Can change Provider Configuration (OAuth)',118,'change_oauth2providerconfig'),(353,'Can delete Provider Configuration (OAuth)',118,'delete_oauth2providerconfig'),(354,'Can add SAML Provider Data',119,'add_samlproviderdata'),(355,'Can change SAML Provider Data',119,'change_samlproviderdata'),(356,'Can delete SAML Provider Data',119,'delete_samlproviderdata'),(357,'Can add Provider Configuration (LTI)',120,'add_ltiproviderconfig'),(358,'Can change Provider Configuration (LTI)',120,'change_ltiproviderconfig'),(359,'Can delete Provider Configuration (LTI)',120,'delete_ltiproviderconfig'),(360,'Can add Provider Configuration (SAML IdP)',121,'add_samlproviderconfig'),(361,'Can change Provider Configuration (SAML IdP)',121,'change_samlproviderconfig'),(362,'Can delete Provider Configuration (SAML IdP)',121,'delete_samlproviderconfig'),(363,'Can add SAML Configuration',122,'add_samlconfiguration'),(364,'Can change SAML Configuration',122,'change_samlconfiguration'),(365,'Can delete SAML Configuration',122,'delete_samlconfiguration'),(366,'Can add Provider API Permission',123,'add_providerapipermissions'),(367,'Can change Provider API Permission',123,'change_providerapipermissions'),(368,'Can delete Provider API Permission',123,'delete_providerapipermissions'),(369,'Can add token',124,'add_token'),(370,'Can change token',124,'change_token'),(371,'Can delete token',124,'delete_token'),(372,'Can add nonce',125,'add_nonce'),(373,'Can change nonce',125,'change_nonce'),(374,'Can delete nonce',125,'delete_nonce'),(375,'Can add consumer',126,'add_consumer'),(376,'Can change consumer',126,'change_consumer'),(377,'Can delete consumer',126,'delete_consumer'),(378,'Can add scope',127,'add_scope'),(379,'Can change scope',127,'change_scope'),(380,'Can delete scope',127,'delete_scope'),(381,'Can add resource',127,'add_resource'),(382,'Can change resource',127,'change_resource'),(383,'Can delete resource',127,'delete_resource'),(384,'Can add article',129,'add_article'),(385,'Can change article',129,'change_article'),(386,'Can delete article',129,'delete_article'),(387,'Can edit all articles and lock/unlock/restore',129,'moderate'),(388,'Can change ownership of any article',129,'assign'),(389,'Can assign permissions to other users',129,'grant'),(390,'Can add URL path',130,'add_urlpath'),(391,'Can change URL path',130,'change_urlpath'),(392,'Can delete URL path',130,'delete_urlpath'),(393,'Can add revision plugin revision',131,'add_revisionpluginrevision'),(394,'Can change revision plugin revision',131,'change_revisionpluginrevision'),(395,'Can delete revision plugin revision',131,'delete_revisionpluginrevision'),(396,'Can add article revision',132,'add_articlerevision'),(397,'Can change article revision',132,'change_articlerevision'),(398,'Can delete article revision',132,'delete_articlerevision'),(399,'Can add article plugin',133,'add_articleplugin'),(400,'Can change article plugin',133,'change_articleplugin'),(401,'Can delete article plugin',133,'delete_articleplugin'),(402,'Can add Article for object',134,'add_articleforobject'),(403,'Can change Article for object',134,'change_articleforobject'),(404,'Can delete Article for object',134,'delete_articleforobject'),(405,'Can add simple plugin',135,'add_simpleplugin'),(406,'Can change simple plugin',135,'change_simpleplugin'),(407,'Can delete simple plugin',135,'delete_simpleplugin'),(408,'Can add revision plugin',136,'add_revisionplugin'),(409,'Can change revision plugin',136,'change_revisionplugin'),(410,'Can delete revision plugin',136,'delete_revisionplugin'),(411,'Can add reusable plugin',137,'add_reusableplugin'),(412,'Can change reusable plugin',137,'change_reusableplugin'),(413,'Can delete reusable plugin',137,'delete_reusableplugin'),(414,'Can add notification',138,'add_notification'),(415,'Can change notification',138,'change_notification'),(416,'Can delete notification',138,'delete_notification'),(417,'Can add subscription',139,'add_subscription'),(418,'Can change subscription',139,'change_subscription'),(419,'Can delete subscription',139,'delete_subscription'),(420,'Can add settings',140,'add_settings'),(421,'Can change settings',140,'change_settings'),(422,'Can delete settings',140,'delete_settings'),(423,'Can add type',141,'add_notificationtype'),(424,'Can change type',141,'change_notificationtype'),(425,'Can delete type',141,'delete_notificationtype'),(426,'Can add log entry',142,'add_logentry'),(427,'Can change log entry',142,'change_logentry'),(428,'Can delete log entry',142,'delete_logentry'),(429,'Can add discussions id mapping',143,'add_discussionsidmapping'),(430,'Can change discussions id mapping',143,'change_discussionsidmapping'),(431,'Can delete discussions id mapping',143,'delete_discussionsidmapping'),(432,'Can add course discussion settings',144,'add_coursediscussionsettings'),(433,'Can change course discussion settings',144,'change_coursediscussionsettings'),(434,'Can delete course discussion settings',144,'delete_coursediscussionsettings'),(435,'Can add forums config',145,'add_forumsconfig'),(436,'Can change forums config',145,'change_forumsconfig'),(437,'Can delete forums config',145,'delete_forumsconfig'),(438,'Can add permission',146,'add_permission'),(439,'Can change permission',146,'change_permission'),(440,'Can delete permission',146,'delete_permission'),(441,'Can add role',147,'add_role'),(442,'Can change role',147,'change_role'),(443,'Can delete role',147,'delete_role'),(444,'Can add note',148,'add_note'),(445,'Can change note',148,'change_note'),(446,'Can delete note',148,'delete_note'),(447,'Can add splash config',149,'add_splashconfig'),(448,'Can change splash config',149,'change_splashconfig'),(449,'Can delete splash config',149,'delete_splashconfig'),(450,'Can add user course tag',150,'add_usercoursetag'),(451,'Can change user course tag',150,'change_usercoursetag'),(452,'Can delete user course tag',150,'delete_usercoursetag'),(453,'Can add user preference',151,'add_userpreference'),(454,'Can change user preference',151,'change_userpreference'),(455,'Can delete user preference',151,'delete_userpreference'),(456,'Can add User Retirement Reporting Status',152,'add_userretirementpartnerreportingstatus'),(457,'Can change User Retirement Reporting Status',152,'change_userretirementpartnerreportingstatus'),(458,'Can delete User Retirement Reporting Status',152,'delete_userretirementpartnerreportingstatus'),(459,'Can add User Retirement Status',153,'add_userretirementstatus'),(460,'Can change User Retirement Status',153,'change_userretirementstatus'),(461,'Can delete User Retirement Status',153,'delete_userretirementstatus'),(462,'Can add retirement state',154,'add_retirementstate'),(463,'Can change retirement state',154,'change_retirementstate'),(464,'Can delete retirement state',154,'delete_retirementstate'),(465,'Can add user org tag',155,'add_userorgtag'),(466,'Can change user org tag',155,'change_userorgtag'),(467,'Can delete user org tag',155,'delete_userorgtag'),(468,'Can add User Retirement Request',156,'add_userretirementrequest'),(469,'Can change User Retirement Request',156,'change_userretirementrequest'),(470,'Can delete User Retirement Request',156,'delete_userretirementrequest'),(471,'Can add order item',157,'add_orderitem'),(472,'Can change order item',157,'change_orderitem'),(473,'Can delete order item',157,'delete_orderitem'),(474,'Can add donation',158,'add_donation'),(475,'Can change donation',158,'change_donation'),(476,'Can delete donation',158,'delete_donation'),(477,'Can add invoice',159,'add_invoice'),(478,'Can change invoice',159,'change_invoice'),(479,'Can delete invoice',159,'delete_invoice'),(480,'Can add donation configuration',160,'add_donationconfiguration'),(481,'Can change donation configuration',160,'change_donationconfiguration'),(482,'Can delete donation configuration',160,'delete_donationconfiguration'),(483,'Can add invoice transaction',161,'add_invoicetransaction'),(484,'Can change invoice transaction',161,'change_invoicetransaction'),(485,'Can delete invoice transaction',161,'delete_invoicetransaction'),(486,'Can add invoice history',162,'add_invoicehistory'),(487,'Can change invoice history',162,'change_invoicehistory'),(488,'Can delete invoice history',162,'delete_invoicehistory'),(489,'Can add coupon redemption',163,'add_couponredemption'),(490,'Can change coupon redemption',163,'change_couponredemption'),(491,'Can delete coupon redemption',163,'delete_couponredemption'),(492,'Can add course reg code item annotation',164,'add_courseregcodeitemannotation'),(493,'Can change course reg code item annotation',164,'change_courseregcodeitemannotation'),(494,'Can delete course reg code item annotation',164,'delete_courseregcodeitemannotation'),(495,'Can add course registration code',165,'add_courseregistrationcode'),(496,'Can change course registration code',165,'change_courseregistrationcode'),(497,'Can delete course registration code',165,'delete_courseregistrationcode'),(498,'Can add order',166,'add_order'),(499,'Can change order',166,'change_order'),(500,'Can delete order',166,'delete_order'),(501,'Can add certificate item',167,'add_certificateitem'),(502,'Can change certificate item',167,'change_certificateitem'),(503,'Can delete certificate item',167,'delete_certificateitem'),(504,'Can add registration code redemption',168,'add_registrationcoderedemption'),(505,'Can change registration code redemption',168,'change_registrationcoderedemption'),(506,'Can delete registration code redemption',168,'delete_registrationcoderedemption'),(507,'Can add course reg code item',169,'add_courseregcodeitem'),(508,'Can change course reg code item',169,'change_courseregcodeitem'),(509,'Can delete course reg code item',169,'delete_courseregcodeitem'),(510,'Can add paid course registration',170,'add_paidcourseregistration'),(511,'Can change paid course registration',170,'change_paidcourseregistration'),(512,'Can delete paid course registration',170,'delete_paidcourseregistration'),(513,'Can add paid course registration annotation',171,'add_paidcourseregistrationannotation'),(514,'Can change paid course registration annotation',171,'change_paidcourseregistrationannotation'),(515,'Can delete paid course registration annotation',171,'delete_paidcourseregistrationannotation'),(516,'Can add invoice item',172,'add_invoiceitem'),(517,'Can change invoice item',172,'change_invoiceitem'),(518,'Can delete invoice item',172,'delete_invoiceitem'),(519,'Can add coupon',173,'add_coupon'),(520,'Can change coupon',173,'change_coupon'),(521,'Can delete coupon',173,'delete_coupon'),(522,'Can add course registration code invoice item',174,'add_courseregistrationcodeinvoiceitem'),(523,'Can change course registration code invoice item',174,'change_courseregistrationcodeinvoiceitem'),(524,'Can delete course registration code invoice item',174,'delete_courseregistrationcodeinvoiceitem'),(525,'Can add course modes archive',175,'add_coursemodesarchive'),(526,'Can change course modes archive',175,'change_coursemodesarchive'),(527,'Can delete course modes archive',175,'delete_coursemodesarchive'),(528,'Can add course mode',176,'add_coursemode'),(529,'Can change course mode',176,'change_coursemode'),(530,'Can delete course mode',176,'delete_coursemode'),(531,'Can add course mode expiration config',177,'add_coursemodeexpirationconfig'),(532,'Can change course mode expiration config',177,'change_coursemodeexpirationconfig'),(533,'Can delete course mode expiration config',177,'delete_coursemodeexpirationconfig'),(534,'Can add course entitlement policy',178,'add_courseentitlementpolicy'),(535,'Can change course entitlement policy',178,'change_courseentitlementpolicy'),(536,'Can delete course entitlement policy',178,'delete_courseentitlementpolicy'),(537,'Can add course entitlement support detail',179,'add_courseentitlementsupportdetail'),(538,'Can change course entitlement support detail',179,'change_courseentitlementsupportdetail'),(539,'Can delete course entitlement support detail',179,'delete_courseentitlementsupportdetail'),(540,'Can add course entitlement',180,'add_courseentitlement'),(541,'Can change course entitlement',180,'change_courseentitlement'),(542,'Can delete course entitlement',180,'delete_courseentitlement'),(543,'Can add sso verification',181,'add_ssoverification'),(544,'Can change sso verification',181,'change_ssoverification'),(545,'Can delete sso verification',181,'delete_ssoverification'),(546,'Can add manual verification',182,'add_manualverification'),(547,'Can change manual verification',182,'change_manualverification'),(548,'Can delete manual verification',182,'delete_manualverification'),(549,'Can add verification deadline',183,'add_verificationdeadline'),(550,'Can change verification deadline',183,'change_verificationdeadline'),(551,'Can delete verification deadline',183,'delete_verificationdeadline'),(552,'Can add software secure photo verification',184,'add_softwaresecurephotoverification'),(553,'Can change software secure photo verification',184,'change_softwaresecurephotoverification'),(554,'Can delete software secure photo verification',184,'delete_softwaresecurephotoverification'),(555,'Can add dark lang config',185,'add_darklangconfig'),(556,'Can change dark lang config',185,'change_darklangconfig'),(557,'Can delete dark lang config',185,'delete_darklangconfig'),(558,'Can add microsite organization mapping',186,'add_micrositeorganizationmapping'),(559,'Can change microsite organization mapping',186,'change_micrositeorganizationmapping'),(560,'Can delete microsite organization mapping',186,'delete_micrositeorganizationmapping'),(561,'Can add microsite history',187,'add_micrositehistory'),(562,'Can change microsite history',187,'change_micrositehistory'),(563,'Can delete microsite history',187,'delete_micrositehistory'),(564,'Can add microsite template',188,'add_micrositetemplate'),(565,'Can change microsite template',188,'change_micrositetemplate'),(566,'Can delete microsite template',188,'delete_micrositetemplate'),(567,'Can add microsite',189,'add_microsite'),(568,'Can change microsite',189,'change_microsite'),(569,'Can delete microsite',189,'delete_microsite'),(570,'Can add whitelisted rss url',190,'add_whitelistedrssurl'),(571,'Can change whitelisted rss url',190,'change_whitelistedrssurl'),(572,'Can delete whitelisted rss url',190,'delete_whitelistedrssurl'),(573,'Can add embargoed state',191,'add_embargoedstate'),(574,'Can change embargoed state',191,'change_embargoedstate'),(575,'Can delete embargoed state',191,'delete_embargoedstate'),(576,'Can add country access rule',192,'add_countryaccessrule'),(577,'Can change country access rule',192,'change_countryaccessrule'),(578,'Can delete country access rule',192,'delete_countryaccessrule'),(579,'Can add course access rule history',193,'add_courseaccessrulehistory'),(580,'Can change course access rule history',193,'change_courseaccessrulehistory'),(581,'Can delete course access rule history',193,'delete_courseaccessrulehistory'),(582,'Can add country',194,'add_country'),(583,'Can change country',194,'change_country'),(584,'Can delete country',194,'delete_country'),(585,'Can add embargoed course',195,'add_embargoedcourse'),(586,'Can change embargoed course',195,'change_embargoedcourse'),(587,'Can delete embargoed course',195,'delete_embargoedcourse'),(588,'Can add restricted course',196,'add_restrictedcourse'),(589,'Can change restricted course',196,'change_restrictedcourse'),(590,'Can delete restricted course',196,'delete_restrictedcourse'),(591,'Can add ip filter',197,'add_ipfilter'),(592,'Can change ip filter',197,'change_ipfilter'),(593,'Can delete ip filter',197,'delete_ipfilter'),(594,'Can add course rerun state',198,'add_coursererunstate'),(595,'Can change course rerun state',198,'change_coursererunstate'),(596,'Can delete course rerun state',198,'delete_coursererunstate'),(597,'Can add mobile api config',199,'add_mobileapiconfig'),(598,'Can change mobile api config',199,'change_mobileapiconfig'),(599,'Can delete mobile api config',199,'delete_mobileapiconfig'),(600,'Can add ignore mobile available flag config',200,'add_ignoremobileavailableflagconfig'),(601,'Can change ignore mobile available flag config',200,'change_ignoremobileavailableflagconfig'),(602,'Can delete ignore mobile available flag config',200,'delete_ignoremobileavailableflagconfig'),(603,'Can add app version config',201,'add_appversionconfig'),(604,'Can change app version config',201,'change_appversionconfig'),(605,'Can delete app version config',201,'delete_appversionconfig'),(606,'Can add partial',202,'add_partial'),(607,'Can change partial',202,'change_partial'),(608,'Can delete partial',202,'delete_partial'),(609,'Can add association',203,'add_association'),(610,'Can change association',203,'change_association'),(611,'Can delete association',203,'delete_association'),(612,'Can add user social auth',204,'add_usersocialauth'),(613,'Can change user social auth',204,'change_usersocialauth'),(614,'Can delete user social auth',204,'delete_usersocialauth'),(615,'Can add nonce',205,'add_nonce'),(616,'Can change nonce',205,'change_nonce'),(617,'Can delete nonce',205,'delete_nonce'),(618,'Can add code',206,'add_code'),(619,'Can change code',206,'change_code'),(620,'Can delete code',206,'delete_code'),(621,'Can add survey form',207,'add_surveyform'),(622,'Can change survey form',207,'change_surveyform'),(623,'Can delete survey form',207,'delete_surveyform'),(624,'Can add survey answer',208,'add_surveyanswer'),(625,'Can change survey answer',208,'change_surveyanswer'),(626,'Can delete survey answer',208,'delete_surveyanswer'),(627,'Can add x block asides config',209,'add_xblockasidesconfig'),(628,'Can change x block asides config',209,'change_xblockasidesconfig'),(629,'Can delete x block asides config',209,'delete_xblockasidesconfig'),(630,'Can add submission',210,'add_submission'),(631,'Can change submission',210,'change_submission'),(632,'Can delete submission',210,'delete_submission'),(633,'Can add student item',211,'add_studentitem'),(634,'Can change student item',211,'change_studentitem'),(635,'Can delete student item',211,'delete_studentitem'),(636,'Can add score summary',212,'add_scoresummary'),(637,'Can change score summary',212,'change_scoresummary'),(638,'Can delete score summary',212,'delete_scoresummary'),(639,'Can add score annotation',213,'add_scoreannotation'),(640,'Can change score annotation',213,'change_scoreannotation'),(641,'Can delete score annotation',213,'delete_scoreannotation'),(642,'Can add score',214,'add_score'),(643,'Can change score',214,'change_score'),(644,'Can delete score',214,'delete_score'),(645,'Can add rubric',215,'add_rubric'),(646,'Can change rubric',215,'change_rubric'),(647,'Can delete rubric',215,'delete_rubric'),(648,'Can add assessment feedback option',216,'add_assessmentfeedbackoption'),(649,'Can change assessment feedback option',216,'change_assessmentfeedbackoption'),(650,'Can delete assessment feedback option',216,'delete_assessmentfeedbackoption'),(651,'Can add criterion',217,'add_criterion'),(652,'Can change criterion',217,'change_criterion'),(653,'Can delete criterion',217,'delete_criterion'),(654,'Can add student training workflow item',218,'add_studenttrainingworkflowitem'),(655,'Can change student training workflow item',218,'change_studenttrainingworkflowitem'),(656,'Can delete student training workflow item',218,'delete_studenttrainingworkflowitem'),(657,'Can add training example',219,'add_trainingexample'),(658,'Can change training example',219,'change_trainingexample'),(659,'Can delete training example',219,'delete_trainingexample'),(660,'Can add assessment feedback',220,'add_assessmentfeedback'),(661,'Can change assessment feedback',220,'change_assessmentfeedback'),(662,'Can delete assessment feedback',220,'delete_assessmentfeedback'),(663,'Can add staff workflow',221,'add_staffworkflow'),(664,'Can change staff workflow',221,'change_staffworkflow'),(665,'Can delete staff workflow',221,'delete_staffworkflow'),(666,'Can add assessment',222,'add_assessment'),(667,'Can change assessment',222,'change_assessment'),(668,'Can delete assessment',222,'delete_assessment'),(669,'Can add peer workflow',223,'add_peerworkflow'),(670,'Can change peer workflow',223,'change_peerworkflow'),(671,'Can delete peer workflow',223,'delete_peerworkflow'),(672,'Can add assessment part',224,'add_assessmentpart'),(673,'Can change assessment part',224,'change_assessmentpart'),(674,'Can delete assessment part',224,'delete_assessmentpart'),(675,'Can add criterion option',225,'add_criterionoption'),(676,'Can change criterion option',225,'change_criterionoption'),(677,'Can delete criterion option',225,'delete_criterionoption'),(678,'Can add student training workflow',226,'add_studenttrainingworkflow'),(679,'Can change student training workflow',226,'change_studenttrainingworkflow'),(680,'Can delete student training workflow',226,'delete_studenttrainingworkflow'),(681,'Can add peer workflow item',227,'add_peerworkflowitem'),(682,'Can change peer workflow item',227,'change_peerworkflowitem'),(683,'Can delete peer workflow item',227,'delete_peerworkflowitem'),(684,'Can add assessment workflow',228,'add_assessmentworkflow'),(685,'Can change assessment workflow',228,'change_assessmentworkflow'),(686,'Can delete assessment workflow',228,'delete_assessmentworkflow'),(687,'Can add assessment workflow step',229,'add_assessmentworkflowstep'),(688,'Can change assessment workflow step',229,'change_assessmentworkflowstep'),(689,'Can delete assessment workflow step',229,'delete_assessmentworkflowstep'),(690,'Can add assessment workflow cancellation',230,'add_assessmentworkflowcancellation'),(691,'Can change assessment workflow cancellation',230,'change_assessmentworkflowcancellation'),(692,'Can delete assessment workflow cancellation',230,'delete_assessmentworkflowcancellation'),(693,'Can add third party transcript credentials state',231,'add_thirdpartytranscriptcredentialsstate'),(694,'Can change third party transcript credentials state',231,'change_thirdpartytranscriptcredentialsstate'),(695,'Can delete third party transcript credentials state',231,'delete_thirdpartytranscriptcredentialsstate'),(696,'Can add video image',232,'add_videoimage'),(697,'Can change video image',232,'change_videoimage'),(698,'Can delete video image',232,'delete_videoimage'),(699,'Can add video',233,'add_video'),(700,'Can change video',233,'change_video'),(701,'Can delete video',233,'delete_video'),(702,'Can add encoded video',234,'add_encodedvideo'),(703,'Can change encoded video',234,'change_encodedvideo'),(704,'Can delete encoded video',234,'delete_encodedvideo'),(705,'Can add transcript preference',235,'add_transcriptpreference'),(706,'Can change transcript preference',235,'change_transcriptpreference'),(707,'Can delete transcript preference',235,'delete_transcriptpreference'),(708,'Can add course video',236,'add_coursevideo'),(709,'Can change course video',236,'change_coursevideo'),(710,'Can delete course video',236,'delete_coursevideo'),(711,'Can add video transcript',237,'add_videotranscript'),(712,'Can change video transcript',237,'change_videotranscript'),(713,'Can delete video transcript',237,'delete_videotranscript'),(714,'Can add profile',238,'add_profile'),(715,'Can change profile',238,'change_profile'),(716,'Can delete profile',238,'delete_profile'),(717,'Can add course overview tab',239,'add_courseoverviewtab'),(718,'Can change course overview tab',239,'change_courseoverviewtab'),(719,'Can delete course overview tab',239,'delete_courseoverviewtab'),(720,'Can add course overview',240,'add_courseoverview'),(721,'Can change course overview',240,'change_courseoverview'),(722,'Can delete course overview',240,'delete_courseoverview'),(723,'Can add course overview image config',241,'add_courseoverviewimageconfig'),(724,'Can change course overview image config',241,'change_courseoverviewimageconfig'),(725,'Can delete course overview image config',241,'delete_courseoverviewimageconfig'),(726,'Can add course overview image set',242,'add_courseoverviewimageset'),(727,'Can change course overview image set',242,'change_courseoverviewimageset'),(728,'Can delete course overview image set',242,'delete_courseoverviewimageset'),(729,'Can add course structure',243,'add_coursestructure'),(730,'Can change course structure',243,'change_coursestructure'),(731,'Can delete course structure',243,'delete_coursestructure'),(732,'Can add block structure model',244,'add_blockstructuremodel'),(733,'Can change block structure model',244,'change_blockstructuremodel'),(734,'Can delete block structure model',244,'delete_blockstructuremodel'),(735,'Can add block structure configuration',245,'add_blockstructureconfiguration'),(736,'Can change block structure configuration',245,'change_blockstructureconfiguration'),(737,'Can delete block structure configuration',245,'delete_blockstructureconfiguration'),(738,'Can add x domain proxy configuration',246,'add_xdomainproxyconfiguration'),(739,'Can change x domain proxy configuration',246,'change_xdomainproxyconfiguration'),(740,'Can delete x domain proxy configuration',246,'delete_xdomainproxyconfiguration'),(741,'Can add commerce configuration',247,'add_commerceconfiguration'),(742,'Can change commerce configuration',247,'change_commerceconfiguration'),(743,'Can delete commerce configuration',247,'delete_commerceconfiguration'),(744,'Can add credit config',248,'add_creditconfig'),(745,'Can change credit config',248,'change_creditconfig'),(746,'Can delete credit config',248,'delete_creditconfig'),(747,'Can add credit request',249,'add_creditrequest'),(748,'Can change credit request',249,'change_creditrequest'),(749,'Can delete credit request',249,'delete_creditrequest'),(750,'Can add credit requirement',250,'add_creditrequirement'),(751,'Can change credit requirement',250,'change_creditrequirement'),(752,'Can delete credit requirement',250,'delete_creditrequirement'),(753,'Can add credit requirement status',251,'add_creditrequirementstatus'),(754,'Can change credit requirement status',251,'change_creditrequirementstatus'),(755,'Can delete credit requirement status',251,'delete_creditrequirementstatus'),(756,'Can add credit course',252,'add_creditcourse'),(757,'Can change credit course',252,'change_creditcourse'),(758,'Can delete credit course',252,'delete_creditcourse'),(759,'Can add credit eligibility',253,'add_crediteligibility'),(760,'Can change credit eligibility',253,'change_crediteligibility'),(761,'Can delete credit eligibility',253,'delete_crediteligibility'),(762,'Can add credit provider',254,'add_creditprovider'),(763,'Can change credit provider',254,'change_creditprovider'),(764,'Can delete credit provider',254,'delete_creditprovider'),(765,'Can add course team',255,'add_courseteam'),(766,'Can change course team',255,'change_courseteam'),(767,'Can delete course team',255,'delete_courseteam'),(768,'Can add course team membership',256,'add_courseteammembership'),(769,'Can change course team membership',256,'change_courseteammembership'),(770,'Can delete course team membership',256,'delete_courseteammembership'),(771,'Can add x block studio configuration flag',257,'add_xblockstudioconfigurationflag'),(772,'Can change x block studio configuration flag',257,'change_xblockstudioconfigurationflag'),(773,'Can delete x block studio configuration flag',257,'delete_xblockstudioconfigurationflag'),(774,'Can add x block studio configuration',258,'add_xblockstudioconfiguration'),(775,'Can change x block studio configuration',258,'change_xblockstudioconfiguration'),(776,'Can delete x block studio configuration',258,'delete_xblockstudioconfiguration'),(777,'Can add x block configuration',259,'add_xblockconfiguration'),(778,'Can change x block configuration',259,'change_xblockconfiguration'),(779,'Can delete x block configuration',259,'delete_xblockconfiguration'),(780,'Can add programs api config',260,'add_programsapiconfig'),(781,'Can change programs api config',260,'change_programsapiconfig'),(782,'Can delete programs api config',260,'delete_programsapiconfig'),(783,'Can add catalog integration',261,'add_catalogintegration'),(784,'Can change catalog integration',261,'change_catalogintegration'),(785,'Can delete catalog integration',261,'delete_catalogintegration'),(786,'Can add self paced configuration',262,'add_selfpacedconfiguration'),(787,'Can change self paced configuration',262,'change_selfpacedconfiguration'),(788,'Can delete self paced configuration',262,'delete_selfpacedconfiguration'),(789,'Can add kv store',263,'add_kvstore'),(790,'Can change kv store',263,'change_kvstore'),(791,'Can delete kv store',263,'delete_kvstore'),(792,'Can add user milestone',264,'add_usermilestone'),(793,'Can change user milestone',264,'change_usermilestone'),(794,'Can delete user milestone',264,'delete_usermilestone'),(795,'Can add course content milestone',265,'add_coursecontentmilestone'),(796,'Can change course content milestone',265,'change_coursecontentmilestone'),(797,'Can delete course content milestone',265,'delete_coursecontentmilestone'),(798,'Can add milestone relationship type',266,'add_milestonerelationshiptype'),(799,'Can change milestone relationship type',266,'change_milestonerelationshiptype'),(800,'Can delete milestone relationship type',266,'delete_milestonerelationshiptype'),(801,'Can add milestone',267,'add_milestone'),(802,'Can change milestone',267,'change_milestone'),(803,'Can delete milestone',267,'delete_milestone'),(804,'Can add course milestone',268,'add_coursemilestone'),(805,'Can change course milestone',268,'change_coursemilestone'),(806,'Can delete course milestone',268,'delete_coursemilestone'),(807,'Can add api access request',1,'add_apiaccessrequest'),(808,'Can change api access request',1,'change_apiaccessrequest'),(809,'Can delete api access request',1,'delete_apiaccessrequest'),(810,'Can add api access config',269,'add_apiaccessconfig'),(811,'Can change api access config',269,'change_apiaccessconfig'),(812,'Can delete api access config',269,'delete_apiaccessconfig'),(813,'Can add catalog',270,'add_catalog'),(814,'Can change catalog',270,'change_catalog'),(815,'Can delete catalog',270,'delete_catalog'),(816,'Can add verified track cohorted course',271,'add_verifiedtrackcohortedcourse'),(817,'Can change verified track cohorted course',271,'change_verifiedtrackcohortedcourse'),(818,'Can delete verified track cohorted course',271,'delete_verifiedtrackcohortedcourse'),(819,'Can add migrate verified track cohorts setting',272,'add_migrateverifiedtrackcohortssetting'),(820,'Can change migrate verified track cohorts setting',272,'change_migrateverifiedtrackcohortssetting'),(821,'Can delete migrate verified track cohorts setting',272,'delete_migrateverifiedtrackcohortssetting'),(822,'Can add badge class',273,'add_badgeclass'),(823,'Can change badge class',273,'change_badgeclass'),(824,'Can delete badge class',273,'delete_badgeclass'),(825,'Can add badge assertion',274,'add_badgeassertion'),(826,'Can change badge assertion',274,'change_badgeassertion'),(827,'Can delete badge assertion',274,'delete_badgeassertion'),(828,'Can add course event badges configuration',275,'add_courseeventbadgesconfiguration'),(829,'Can change course event badges configuration',275,'change_courseeventbadgesconfiguration'),(830,'Can delete course event badges configuration',275,'delete_courseeventbadgesconfiguration'),(831,'Can add course complete image configuration',276,'add_coursecompleteimageconfiguration'),(832,'Can change course complete image configuration',276,'change_coursecompleteimageconfiguration'),(833,'Can delete course complete image configuration',276,'delete_coursecompleteimageconfiguration'),(834,'Can add email marketing configuration',277,'add_emailmarketingconfiguration'),(835,'Can change email marketing configuration',277,'change_emailmarketingconfiguration'),(836,'Can delete email marketing configuration',277,'delete_emailmarketingconfiguration'),(837,'Can add failed task',278,'add_failedtask'),(838,'Can change failed task',278,'change_failedtask'),(839,'Can delete failed task',278,'delete_failedtask'),(840,'Can add chord data',279,'add_chorddata'),(841,'Can change chord data',279,'change_chorddata'),(842,'Can delete chord data',279,'delete_chorddata'),(843,'Can add crawlers config',280,'add_crawlersconfig'),(844,'Can change crawlers config',280,'change_crawlersconfig'),(845,'Can delete crawlers config',280,'delete_crawlersconfig'),(846,'Can add Waffle flag course override',281,'add_waffleflagcourseoverridemodel'),(847,'Can change Waffle flag course override',281,'change_waffleflagcourseoverridemodel'),(848,'Can delete Waffle flag course override',281,'delete_waffleflagcourseoverridemodel'),(849,'Can add course goal',282,'add_coursegoal'),(850,'Can change course goal',282,'change_coursegoal'),(851,'Can delete course goal',282,'delete_coursegoal'),(852,'Can add Experiment Data',283,'add_experimentdata'),(853,'Can change Experiment Data',283,'change_experimentdata'),(854,'Can delete Experiment Data',283,'delete_experimentdata'),(855,'Can add Experiment Key-Value Pair',284,'add_experimentkeyvalue'),(856,'Can change Experiment Key-Value Pair',284,'change_experimentkeyvalue'),(857,'Can delete Experiment Key-Value Pair',284,'delete_experimentkeyvalue'),(858,'Can add proctored allowance history',285,'add_proctoredexamstudentallowancehistory'),(859,'Can change proctored allowance history',285,'change_proctoredexamstudentallowancehistory'),(860,'Can delete proctored allowance history',285,'delete_proctoredexamstudentallowancehistory'),(861,'Can add proctored exam',286,'add_proctoredexam'),(862,'Can change proctored exam',286,'change_proctoredexam'),(863,'Can delete proctored exam',286,'delete_proctoredexam'),(864,'Can add proctored exam software secure comment',287,'add_proctoredexamsoftwaresecurecomment'),(865,'Can change proctored exam software secure comment',287,'change_proctoredexamsoftwaresecurecomment'),(866,'Can delete proctored exam software secure comment',287,'delete_proctoredexamsoftwaresecurecomment'),(867,'Can add Proctored exam review policy',288,'add_proctoredexamreviewpolicy'),(868,'Can change Proctored exam review policy',288,'change_proctoredexamreviewpolicy'),(869,'Can delete Proctored exam review policy',288,'delete_proctoredexamreviewpolicy'),(870,'Can add proctored exam review policy history',289,'add_proctoredexamreviewpolicyhistory'),(871,'Can change proctored exam review policy history',289,'change_proctoredexamreviewpolicyhistory'),(872,'Can delete proctored exam review policy history',289,'delete_proctoredexamreviewpolicyhistory'),(873,'Can add proctored exam attempt',290,'add_proctoredexamstudentattempt'),(874,'Can change proctored exam attempt',290,'change_proctoredexamstudentattempt'),(875,'Can delete proctored exam attempt',290,'delete_proctoredexamstudentattempt'),(876,'Can add proctored exam attempt history',291,'add_proctoredexamstudentattempthistory'),(877,'Can change proctored exam attempt history',291,'change_proctoredexamstudentattempthistory'),(878,'Can delete proctored exam attempt history',291,'delete_proctoredexamstudentattempthistory'),(879,'Can add Proctored exam review archive',292,'add_proctoredexamsoftwaresecurereviewhistory'),(880,'Can change Proctored exam review archive',292,'change_proctoredexamsoftwaresecurereviewhistory'),(881,'Can delete Proctored exam review archive',292,'delete_proctoredexamsoftwaresecurereviewhistory'),(882,'Can add Proctored exam software secure review',293,'add_proctoredexamsoftwaresecurereview'),(883,'Can change Proctored exam software secure review',293,'change_proctoredexamsoftwaresecurereview'),(884,'Can delete Proctored exam software secure review',293,'delete_proctoredexamsoftwaresecurereview'),(885,'Can add proctored allowance',294,'add_proctoredexamstudentallowance'),(886,'Can change proctored allowance',294,'change_proctoredexamstudentallowance'),(887,'Can delete proctored allowance',294,'delete_proctoredexamstudentallowance'),(888,'Can add organization',295,'add_organization'),(889,'Can change organization',295,'change_organization'),(890,'Can delete organization',295,'delete_organization'),(891,'Can add Link Course',296,'add_organizationcourse'),(892,'Can change Link Course',296,'change_organizationcourse'),(893,'Can delete Link Course',296,'delete_organizationcourse'),(894,'Can add Enterprise Customer Learner',297,'add_enterprisecustomeruser'),(895,'Can change Enterprise Customer Learner',297,'change_enterprisecustomeruser'),(896,'Can delete Enterprise Customer Learner',297,'delete_enterprisecustomeruser'),(897,'Can add pending enrollment',298,'add_pendingenrollment'),(898,'Can change pending enrollment',298,'change_pendingenrollment'),(899,'Can delete pending enrollment',298,'delete_pendingenrollment'),(900,'Can add historical Enterprise Customer',299,'add_historicalenterprisecustomer'),(901,'Can change historical Enterprise Customer',299,'change_historicalenterprisecustomer'),(902,'Can delete historical Enterprise Customer',299,'delete_historicalenterprisecustomer'),(903,'Can add enterprise customer reporting configuration',300,'add_enterprisecustomerreportingconfiguration'),(904,'Can change enterprise customer reporting configuration',300,'change_enterprisecustomerreportingconfiguration'),(905,'Can delete enterprise customer reporting configuration',300,'delete_enterprisecustomerreportingconfiguration'),(906,'Can add Enterprise Customer Catalog',301,'add_enterprisecustomercatalog'),(907,'Can change Enterprise Customer Catalog',301,'change_enterprisecustomercatalog'),(908,'Can delete Enterprise Customer Catalog',301,'delete_enterprisecustomercatalog'),(909,'Can add enterprise course enrollment',302,'add_enterprisecourseenrollment'),(910,'Can change enterprise course enrollment',302,'change_enterprisecourseenrollment'),(911,'Can delete enterprise course enrollment',302,'delete_enterprisecourseenrollment'),(912,'Can add historical Enterprise Customer Catalog',303,'add_historicalenterprisecustomercatalog'),(913,'Can change historical Enterprise Customer Catalog',303,'change_historicalenterprisecustomercatalog'),(914,'Can delete historical Enterprise Customer Catalog',303,'delete_historicalenterprisecustomercatalog'),(915,'Can add Enterprise Customer',304,'add_enterprisecustomer'),(916,'Can change Enterprise Customer',304,'change_enterprisecustomer'),(917,'Can delete Enterprise Customer',304,'delete_enterprisecustomer'),(918,'Can add enrollment notification email template',305,'add_enrollmentnotificationemailtemplate'),(919,'Can change enrollment notification email template',305,'change_enrollmentnotificationemailtemplate'),(920,'Can delete enrollment notification email template',305,'delete_enrollmentnotificationemailtemplate'),(921,'Can add Enterprise Customer Entitlement',306,'add_enterprisecustomerentitlement'),(922,'Can change Enterprise Customer Entitlement',306,'change_enterprisecustomerentitlement'),(923,'Can delete Enterprise Customer Entitlement',306,'delete_enterprisecustomerentitlement'),(924,'Can add historical enterprise course enrollment',307,'add_historicalenterprisecourseenrollment'),(925,'Can change historical enterprise course enrollment',307,'change_historicalenterprisecourseenrollment'),(926,'Can delete historical enterprise course enrollment',307,'delete_historicalenterprisecourseenrollment'),(927,'Can add historical Enterprise Customer Entitlement',308,'add_historicalenterprisecustomerentitlement'),(928,'Can change historical Enterprise Customer Entitlement',308,'change_historicalenterprisecustomerentitlement'),(929,'Can delete historical Enterprise Customer Entitlement',308,'delete_historicalenterprisecustomerentitlement'),(930,'Can add pending enterprise customer user',309,'add_pendingenterprisecustomeruser'),(931,'Can change pending enterprise customer user',309,'change_pendingenterprisecustomeruser'),(932,'Can delete pending enterprise customer user',309,'delete_pendingenterprisecustomeruser'),(933,'Can add Branding Configuration',310,'add_enterprisecustomerbrandingconfiguration'),(934,'Can change Branding Configuration',310,'change_enterprisecustomerbrandingconfiguration'),(935,'Can delete Branding Configuration',310,'delete_enterprisecustomerbrandingconfiguration'),(936,'Can add enterprise customer identity provider',311,'add_enterprisecustomeridentityprovider'),(937,'Can change enterprise customer identity provider',311,'change_enterprisecustomeridentityprovider'),(938,'Can delete enterprise customer identity provider',311,'delete_enterprisecustomeridentityprovider'),(939,'Can add historical enrollment notification email template',312,'add_historicalenrollmentnotificationemailtemplate'),(940,'Can change historical enrollment notification email template',312,'change_historicalenrollmentnotificationemailtemplate'),(941,'Can delete historical enrollment notification email template',312,'delete_historicalenrollmentnotificationemailtemplate'),(942,'Can add Data Sharing Consent Record',313,'add_datasharingconsent'),(943,'Can change Data Sharing Consent Record',313,'change_datasharingconsent'),(944,'Can delete Data Sharing Consent Record',313,'delete_datasharingconsent'),(945,'Can add data sharing consent text overrides',314,'add_datasharingconsenttextoverrides'),(946,'Can change data sharing consent text overrides',314,'change_datasharingconsenttextoverrides'),(947,'Can delete data sharing consent text overrides',314,'delete_datasharingconsenttextoverrides'),(948,'Can add historical Data Sharing Consent Record',315,'add_historicaldatasharingconsent'),(949,'Can change historical Data Sharing Consent Record',315,'change_historicaldatasharingconsent'),(950,'Can delete historical Data Sharing Consent Record',315,'delete_historicaldatasharingconsent'),(951,'Can add content metadata item transmission',316,'add_contentmetadataitemtransmission'),(952,'Can change content metadata item transmission',316,'change_contentmetadataitemtransmission'),(953,'Can delete content metadata item transmission',316,'delete_contentmetadataitemtransmission'),(954,'Can add learner data transmission audit',317,'add_learnerdatatransmissionaudit'),(955,'Can change learner data transmission audit',317,'change_learnerdatatransmissionaudit'),(956,'Can delete learner data transmission audit',317,'delete_learnerdatatransmissionaudit'),(957,'Can add degreed global configuration',318,'add_degreedglobalconfiguration'),(958,'Can change degreed global configuration',318,'change_degreedglobalconfiguration'),(959,'Can delete degreed global configuration',318,'delete_degreedglobalconfiguration'),(960,'Can add degreed learner data transmission audit',319,'add_degreedlearnerdatatransmissionaudit'),(961,'Can change degreed learner data transmission audit',319,'change_degreedlearnerdatatransmissionaudit'),(962,'Can delete degreed learner data transmission audit',319,'delete_degreedlearnerdatatransmissionaudit'),(963,'Can add historical degreed enterprise customer configuration',320,'add_historicaldegreedenterprisecustomerconfiguration'),(964,'Can change historical degreed enterprise customer configuration',320,'change_historicaldegreedenterprisecustomerconfiguration'),(965,'Can delete historical degreed enterprise customer configuration',320,'delete_historicaldegreedenterprisecustomerconfiguration'),(966,'Can add degreed enterprise customer configuration',321,'add_degreedenterprisecustomerconfiguration'),(967,'Can change degreed enterprise customer configuration',321,'change_degreedenterprisecustomerconfiguration'),(968,'Can delete degreed enterprise customer configuration',321,'delete_degreedenterprisecustomerconfiguration'),(969,'Can add sap success factors global configuration',322,'add_sapsuccessfactorsglobalconfiguration'),(970,'Can change sap success factors global configuration',322,'change_sapsuccessfactorsglobalconfiguration'),(971,'Can delete sap success factors global configuration',322,'delete_sapsuccessfactorsglobalconfiguration'),(972,'Can add sap success factors learner data transmission audit',323,'add_sapsuccessfactorslearnerdatatransmissionaudit'),(973,'Can change sap success factors learner data transmission audit',323,'change_sapsuccessfactorslearnerdatatransmissionaudit'),(974,'Can delete sap success factors learner data transmission audit',323,'delete_sapsuccessfactorslearnerdatatransmissionaudit'),(975,'Can add sap success factors enterprise customer configuration',324,'add_sapsuccessfactorsenterprisecustomerconfiguration'),(976,'Can change sap success factors enterprise customer configuration',324,'change_sapsuccessfactorsenterprisecustomerconfiguration'),(977,'Can delete sap success factors enterprise customer configuration',324,'delete_sapsuccessfactorsenterprisecustomerconfiguration'),(978,'Can add schedule config',325,'add_scheduleconfig'),(979,'Can change schedule config',325,'change_scheduleconfig'),(980,'Can delete schedule config',325,'delete_scheduleconfig'),(981,'Can add schedule experience',326,'add_scheduleexperience'),(982,'Can change schedule experience',326,'change_scheduleexperience'),(983,'Can delete schedule experience',326,'delete_scheduleexperience'),(984,'Can add Schedule',327,'add_schedule'),(985,'Can change Schedule',327,'change_schedule'),(986,'Can delete Schedule',327,'delete_schedule'),(987,'Can add course persistent grades flag',328,'add_coursepersistentgradesflag'),(988,'Can change course persistent grades flag',328,'change_coursepersistentgradesflag'),(989,'Can delete course persistent grades flag',328,'delete_coursepersistentgradesflag'),(990,'Can add visible blocks',329,'add_visibleblocks'),(991,'Can change visible blocks',329,'change_visibleblocks'),(992,'Can delete visible blocks',329,'delete_visibleblocks'),(993,'Can add persistent grades enabled flag',330,'add_persistentgradesenabledflag'),(994,'Can change persistent grades enabled flag',330,'change_persistentgradesenabledflag'),(995,'Can delete persistent grades enabled flag',330,'delete_persistentgradesenabledflag'),(996,'Can add persistent subsection grade override',331,'add_persistentsubsectiongradeoverride'),(997,'Can change persistent subsection grade override',331,'change_persistentsubsectiongradeoverride'),(998,'Can delete persistent subsection grade override',331,'delete_persistentsubsectiongradeoverride'),(999,'Can add persistent subsection grade',332,'add_persistentsubsectiongrade'),(1000,'Can change persistent subsection grade',332,'change_persistentsubsectiongrade'),(1001,'Can delete persistent subsection grade',332,'delete_persistentsubsectiongrade'),(1002,'Can add compute grades setting',333,'add_computegradessetting'),(1003,'Can change compute grades setting',333,'change_computegradessetting'),(1004,'Can delete compute grades setting',333,'delete_computegradessetting'),(1005,'Can add persistent course grade',334,'add_persistentcoursegrade'),(1006,'Can change persistent course grade',334,'change_persistentcoursegrade'),(1007,'Can delete persistent course grade',334,'delete_persistentcoursegrade'),(1008,'Can add credentials api config',335,'add_credentialsapiconfig'),(1009,'Can change credentials api config',335,'change_credentialsapiconfig'),(1010,'Can delete credentials api config',335,'delete_credentialsapiconfig'),(1011,'Can add x block cache',336,'add_xblockcache'),(1012,'Can change x block cache',336,'change_xblockcache'),(1013,'Can delete x block cache',336,'delete_xblockcache'),(1014,'Can add bookmark',337,'add_bookmark'),(1015,'Can change bookmark',337,'change_bookmark'),(1016,'Can delete bookmark',337,'delete_bookmark'),(1017,'Can add site theme',338,'add_sitetheme'),(1018,'Can change site theme',338,'change_sitetheme'),(1019,'Can delete site theme',338,'delete_sitetheme'),(1020,'Can add block completion',339,'add_blockcompletion'),(1021,'Can change block completion',339,'change_blockcompletion'),(1022,'Can delete block completion',339,'delete_blockcompletion'),(1023,'Can add video upload config',340,'add_videouploadconfig'),(1024,'Can change video upload config',340,'change_videouploadconfig'),(1025,'Can delete video upload config',340,'delete_videouploadconfig'),(1026,'Can add push notification config',341,'add_pushnotificationconfig'),(1027,'Can change push notification config',341,'change_pushnotificationconfig'),(1028,'Can delete push notification config',341,'delete_pushnotificationconfig'),(1029,'Can add course creator',342,'add_coursecreator'),(1030,'Can change course creator',342,'change_coursecreator'),(1031,'Can delete course creator',342,'delete_coursecreator'),(1032,'Can add studio config',343,'add_studioconfig'),(1033,'Can change studio config',343,'change_studioconfig'),(1034,'Can delete studio config',343,'delete_studioconfig'),(1035,'Can add course edit lti fields enabled flag',344,'add_courseeditltifieldsenabledflag'),(1036,'Can change course edit lti fields enabled flag',344,'change_courseeditltifieldsenabledflag'),(1037,'Can delete course edit lti fields enabled flag',344,'delete_courseeditltifieldsenabledflag'),(1038,'Can add available tag value',345,'add_tagavailablevalues'),(1039,'Can change available tag value',345,'change_tagavailablevalues'),(1040,'Can delete available tag value',345,'delete_tagavailablevalues'),(1041,'Can add tag category',346,'add_tagcategories'),(1042,'Can change tag category',346,'change_tagcategories'),(1043,'Can delete tag category',346,'delete_tagcategories'),(1044,'Can add user task status',347,'add_usertaskstatus'),(1045,'Can change user task status',347,'change_usertaskstatus'),(1046,'Can delete user task status',347,'delete_usertaskstatus'),(1047,'Can add user task artifact',348,'add_usertaskartifact'),(1048,'Can change user task artifact',348,'change_usertaskartifact'),(1049,'Can delete user task artifact',348,'delete_usertaskartifact'); | |
/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `auth_registration` | |
-- | |
DROP TABLE IF EXISTS `auth_registration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `auth_registration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`activation_key` varchar(32) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `activation_key` (`activation_key`), | |
UNIQUE KEY `user_id` (`user_id`), | |
CONSTRAINT `auth_registration_user_id_f99bc297_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `auth_registration` | |
-- | |
LOCK TABLES `auth_registration` WRITE; | |
/*!40000 ALTER TABLE `auth_registration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `auth_registration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
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(30) NOT NULL, | |
`last_name` varchar(30) 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`), | |
UNIQUE KEY `email` (`email`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!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 */; | |
INSERT INTO `auth_user` VALUES (1,'!IhCfv7UfRWDbK5iTxp1yYFCWYSJ4bKvm4HenQDgr',NULL,0,'ecommerce_worker','','','[email protected]',0,1,'2018-09-11 19:58:36.193023'); | |
/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
CREATE TABLE `auth_user_groups` ( | |
`id` int(11) 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=latin1; | |
/*!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 */; | |
/*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
CREATE TABLE `auth_user_user_permissions` ( | |
`id` int(11) 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=latin1; | |
/*!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 */; | |
/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `auth_userprofile` | |
-- | |
DROP TABLE IF EXISTS `auth_userprofile`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `auth_userprofile` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`meta` longtext NOT NULL, | |
`courseware` varchar(255) NOT NULL, | |
`language` varchar(255) NOT NULL, | |
`location` varchar(255) NOT NULL, | |
`year_of_birth` int(11) DEFAULT NULL, | |
`gender` varchar(6) DEFAULT NULL, | |
`level_of_education` varchar(6) DEFAULT NULL, | |
`mailing_address` longtext, | |
`city` longtext, | |
`country` varchar(2) DEFAULT NULL, | |
`goals` longtext, | |
`allow_certificate` tinyint(1) NOT NULL, | |
`bio` varchar(3000) DEFAULT NULL, | |
`profile_image_uploaded_at` datetime(6) DEFAULT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
KEY `auth_userprofile_name_50909f10` (`name`), | |
KEY `auth_userprofile_language_8948d814` (`language`), | |
KEY `auth_userprofile_location_ca92e4f6` (`location`), | |
KEY `auth_userprofile_year_of_birth_6559b9a5` (`year_of_birth`), | |
KEY `auth_userprofile_gender_44a122fb` (`gender`), | |
KEY `auth_userprofile_level_of_education_93927e04` (`level_of_education`), | |
CONSTRAINT `auth_userprofile_user_id_62634b27_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `auth_userprofile` | |
-- | |
LOCK TABLES `auth_userprofile` WRITE; | |
/*!40000 ALTER TABLE `auth_userprofile` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `auth_userprofile` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `badges_badgeassertion` | |
-- | |
DROP TABLE IF EXISTS `badges_badgeassertion`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `badges_badgeassertion` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`data` longtext NOT NULL, | |
`backend` varchar(50) NOT NULL, | |
`image_url` varchar(200) NOT NULL, | |
`assertion_url` varchar(200) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`badge_class_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `badges_badgeassertion_created_d098832e` (`created`), | |
KEY `badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba` (`badge_class_id`), | |
KEY `badges_badgeassertion_user_id_13665630_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba` FOREIGN KEY (`badge_class_id`) REFERENCES `badges_badgeclass` (`id`), | |
CONSTRAINT `badges_badgeassertion_user_id_13665630_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `badges_badgeassertion` | |
-- | |
LOCK TABLES `badges_badgeassertion` WRITE; | |
/*!40000 ALTER TABLE `badges_badgeassertion` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `badges_badgeassertion` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `badges_badgeclass` | |
-- | |
DROP TABLE IF EXISTS `badges_badgeclass`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `badges_badgeclass` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`slug` varchar(255) NOT NULL, | |
`issuing_component` varchar(50) NOT NULL, | |
`display_name` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`description` longtext NOT NULL, | |
`criteria` longtext NOT NULL, | |
`mode` varchar(100) NOT NULL, | |
`image` varchar(100) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `badges_badgeclass_slug_issuing_component_course_id_92cd3912_uniq` (`slug`,`issuing_component`,`course_id`), | |
KEY `badges_badgeclass_slug_5f420f6f` (`slug`), | |
KEY `badges_badgeclass_issuing_component_85b6d93d` (`issuing_component`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `badges_badgeclass` | |
-- | |
LOCK TABLES `badges_badgeclass` WRITE; | |
/*!40000 ALTER TABLE `badges_badgeclass` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `badges_badgeclass` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `badges_coursecompleteimageconfiguration` | |
-- | |
DROP TABLE IF EXISTS `badges_coursecompleteimageconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `badges_coursecompleteimageconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`mode` varchar(125) NOT NULL, | |
`icon` varchar(100) NOT NULL, | |
`default` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `mode` (`mode`) | |
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `badges_coursecompleteimageconfiguration` | |
-- | |
LOCK TABLES `badges_coursecompleteimageconfiguration` WRITE; | |
/*!40000 ALTER TABLE `badges_coursecompleteimageconfiguration` DISABLE KEYS */; | |
INSERT INTO `badges_coursecompleteimageconfiguration` VALUES (1,'honor','badges/badges/honor.png',0),(2,'verified','badges/badges/verified.png',0),(3,'professional','badges/badges/professional.png',0); | |
/*!40000 ALTER TABLE `badges_coursecompleteimageconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `badges_courseeventbadgesconfiguration` | |
-- | |
DROP TABLE IF EXISTS `badges_courseeventbadgesconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `badges_courseeventbadgesconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`courses_completed` longtext NOT NULL, | |
`courses_enrolled` longtext NOT NULL, | |
`course_groups` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `badges_courseeventba_changed_by_id_db04ed01_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `badges_courseeventba_changed_by_id_db04ed01_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `badges_courseeventbadgesconfiguration` | |
-- | |
LOCK TABLES `badges_courseeventbadgesconfiguration` WRITE; | |
/*!40000 ALTER TABLE `badges_courseeventbadgesconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `badges_courseeventbadgesconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `block_structure` | |
-- | |
DROP TABLE IF EXISTS `block_structure`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `block_structure` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`data_usage_key` varchar(255) NOT NULL, | |
`data_version` varchar(255) DEFAULT NULL, | |
`data_edit_timestamp` datetime(6) DEFAULT NULL, | |
`transformers_schema_version` varchar(255) NOT NULL, | |
`block_structure_schema_version` varchar(255) NOT NULL, | |
`data` varchar(500) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `data_usage_key` (`data_usage_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `block_structure` | |
-- | |
LOCK TABLES `block_structure` WRITE; | |
/*!40000 ALTER TABLE `block_structure` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `block_structure` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `block_structure_config` | |
-- | |
DROP TABLE IF EXISTS `block_structure_config`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `block_structure_config` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`num_versions_to_keep` int(11) DEFAULT NULL, | |
`cache_timeout_in_seconds` int(11) DEFAULT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `block_structure_config_changed_by_id_45af0b10_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `block_structure_config_changed_by_id_45af0b10_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `block_structure_config` | |
-- | |
LOCK TABLES `block_structure_config` WRITE; | |
/*!40000 ALTER TABLE `block_structure_config` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `block_structure_config` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bookmarks_bookmark` | |
-- | |
DROP TABLE IF EXISTS `bookmarks_bookmark`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bookmarks_bookmark` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_key` varchar(255) NOT NULL, | |
`usage_key` varchar(255) NOT NULL, | |
`path` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
`xblock_cache_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `bookmarks_bookmark_user_id_usage_key_61eac24b_uniq` (`user_id`,`usage_key`), | |
KEY `bookmarks_bookmark_course_key_46609583` (`course_key`), | |
KEY `bookmarks_bookmark_usage_key_d07927c9` (`usage_key`), | |
KEY `bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks` (`xblock_cache_id`), | |
CONSTRAINT `bookmarks_bookmark_user_id_a26bf17c_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks` FOREIGN KEY (`xblock_cache_id`) REFERENCES `bookmarks_xblockcache` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bookmarks_bookmark` | |
-- | |
LOCK TABLES `bookmarks_bookmark` WRITE; | |
/*!40000 ALTER TABLE `bookmarks_bookmark` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bookmarks_bookmark` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bookmarks_xblockcache` | |
-- | |
DROP TABLE IF EXISTS `bookmarks_xblockcache`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bookmarks_xblockcache` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_key` varchar(255) NOT NULL, | |
`usage_key` varchar(255) NOT NULL, | |
`display_name` varchar(255) NOT NULL, | |
`paths` longtext NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `usage_key` (`usage_key`), | |
KEY `bookmarks_xblockcache_course_key_5297fa77` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bookmarks_xblockcache` | |
-- | |
LOCK TABLES `bookmarks_xblockcache` WRITE; | |
/*!40000 ALTER TABLE `bookmarks_xblockcache` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bookmarks_xblockcache` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `branding_brandingapiconfig` | |
-- | |
DROP TABLE IF EXISTS `branding_brandingapiconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `branding_brandingapiconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `branding_brandingapi_changed_by_id_bab2730f_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `branding_brandingapi_changed_by_id_bab2730f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `branding_brandingapiconfig` | |
-- | |
LOCK TABLES `branding_brandingapiconfig` WRITE; | |
/*!40000 ALTER TABLE `branding_brandingapiconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `branding_brandingapiconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `branding_brandinginfoconfig` | |
-- | |
DROP TABLE IF EXISTS `branding_brandinginfoconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `branding_brandinginfoconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`configuration` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `branding_brandinginf_changed_by_id_616dd172_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `branding_brandinginf_changed_by_id_616dd172_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `branding_brandinginfoconfig` | |
-- | |
LOCK TABLES `branding_brandinginfoconfig` WRITE; | |
/*!40000 ALTER TABLE `branding_brandinginfoconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `branding_brandinginfoconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_bulkemailflag` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_bulkemailflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_bulkemailflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`require_course_email_auth` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_bulkemailflag` | |
-- | |
LOCK TABLES `bulk_email_bulkemailflag` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_bulkemailflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_bulkemailflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_cohorttarget` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_cohorttarget`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_cohorttarget` ( | |
`target_ptr_id` int(11) NOT NULL, | |
`cohort_id` int(11) NOT NULL, | |
PRIMARY KEY (`target_ptr_id`), | |
KEY `bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr` (`cohort_id`), | |
CONSTRAINT `bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr` FOREIGN KEY (`cohort_id`) REFERENCES `course_groups_courseusergroup` (`id`), | |
CONSTRAINT `bulk_email_cohorttar_target_ptr_id_7e1a1a40_fk_bulk_emai` FOREIGN KEY (`target_ptr_id`) REFERENCES `bulk_email_target` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_cohorttarget` | |
-- | |
LOCK TABLES `bulk_email_cohorttarget` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_cohorttarget` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_cohorttarget` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_courseauthorization` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_courseauthorization`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_courseauthorization` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`email_enabled` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_courseauthorization` | |
-- | |
LOCK TABLES `bulk_email_courseauthorization` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_courseauthorization` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_courseauthorization` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_courseemail` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_courseemail`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_courseemail` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`slug` varchar(128) NOT NULL, | |
`subject` varchar(128) NOT NULL, | |
`html_message` longtext, | |
`text_message` longtext, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`to_option` varchar(64) NOT NULL, | |
`template_name` varchar(255) DEFAULT NULL, | |
`from_addr` varchar(255) DEFAULT NULL, | |
`sender_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id` (`sender_id`), | |
KEY `bulk_email_courseemail_slug_bd25801f` (`slug`), | |
KEY `bulk_email_courseemail_course_id_b7b8a9a2` (`course_id`), | |
CONSTRAINT `bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id` FOREIGN KEY (`sender_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_courseemail` | |
-- | |
LOCK TABLES `bulk_email_courseemail` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_courseemail` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_courseemail` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_courseemail_targets` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_courseemail_targets`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_courseemail_targets` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`courseemail_id` int(11) NOT NULL, | |
`target_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `bulk_email_courseemail_t_courseemail_id_target_id_e0440acc_uniq` (`courseemail_id`,`target_id`), | |
KEY `bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai` (`target_id`), | |
CONSTRAINT `bulk_email_courseema_courseemail_id_83f5bdcd_fk_bulk_emai` FOREIGN KEY (`courseemail_id`) REFERENCES `bulk_email_courseemail` (`id`), | |
CONSTRAINT `bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai` FOREIGN KEY (`target_id`) REFERENCES `bulk_email_target` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_courseemail_targets` | |
-- | |
LOCK TABLES `bulk_email_courseemail_targets` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_courseemail_targets` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_courseemail_targets` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_courseemailtemplate` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_courseemailtemplate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_courseemailtemplate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`html_template` longtext, | |
`plain_template` longtext, | |
`name` varchar(255) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`) | |
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_courseemailtemplate` | |
-- | |
LOCK TABLES `bulk_email_courseemailtemplate` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_courseemailtemplate` DISABLE KEYS */; | |
INSERT INTO `bulk_email_courseemailtemplate` VALUES (1,'<!DOCTYPE html PUBLIC \'-//W3C//DTD XHTML 1.0 Transitional//EN\' \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'><html xmlns:fb=\'http://www.facebook.com/2008/fbml\' xmlns:og=\'http://opengraph.org/schema/\'> <head><meta property=\'og:title\' content=\'Update from {course_title}\'/><meta property=\'fb:page_id\' content=\'43929265776\' /> <meta http-equiv=\'Content-Type\' content=\'text/html; charset=UTF-8\'> <title>Update from {course_title}</title> </head> <body leftmargin=\'0\' marginwidth=\'0\' topmargin=\'0\' marginheight=\'0\' offset=\'0\' style=\'margin: 0;padding: 0;background-color: #ffffff;\'> <center> <table align=\'center\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' height=\'100%\' width=\'100%\' id=\'bodyTable\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;\'> <tr> <td align=\'center\' valign=\'top\' id=\'bodyCell\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;\'> <!-- BEGIN TEMPLATE // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN PREHEADER // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templatePreheader\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'preheaderContainer\' style=\'padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'366\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;\'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN HEADER // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templateHeader\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'headerContainer\' style=\'padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnImageBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnImageBlockOuter\'> <tr> <td valign=\'top\' style=\'padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\' class=\'mcnImageBlockInner\'> <table align=\'left\' width=\'100%\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' class=\'mcnImageContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td class=\'mcnImageContent\' valign=\'top\' style=\'padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <a href=\'http://edx.org\' title=\'\' class=\'\' target=\'_self\' style=\'word-wrap: break-word !important;\'> <img align=\'left\' alt=\'edX\' src=\'http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg\' width=\'564.0000152587891\' style=\'max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;\' class=\'mcnImage\'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'599\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;\'> <div style=\'text-align: right;\'><span style=\'font-size:11px;\'><span style=\'color:#00a0e3;\'>Connect with edX:</span></span> <a href=\'http://facebook.com/edxonline\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/FacebookIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://twitter.com/edxonline\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/TwitterIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'https://plus.google.com/108235383044095082735\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://www.meetup.com/edX-Communities/\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/MeetupIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN BODY // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templateBody\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'bodyContainer\' style=\'padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnCaptionBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnCaptionBlockOuter\'> <tr> <td class=\'mcnCaptionBlockInner\' valign=\'top\' style=\'padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' class=\'mcnCaptionLeftContentOuter\' width=\'100%\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnCaptionLeftContentInner\' style=\'padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'right\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' class=\'mcnCaptionLeftImageContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td class=\'mcnCaptionLeftImageContent\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <img alt=\'\' src=\'{course_image_url}\' width=\'176\' style=\'max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;\' class=\'mcnImage\'> </td> </tr> </tbody></table> <table class=\'mcnCaptionLeftTextContentContainer\' align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'352\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;\'> <h3 class=\'null\' style=\'display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;\'><strong style=\'font-size: 22px;\'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;\'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnDividerBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnDividerBlockOuter\'> <tr> <td class=\'mcnDividerBlockInner\' style=\'padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table class=\'mcnDividerContent\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' style=\'border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;\'> <div style=\'text-align: right;\'><a href=\'http://facebook.com/edxonline\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/FacebookIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://twitter.com/edxonline\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/TwitterIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'https://plus.google.com/108235383044095082735\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://www.meetup.com/edX-Communities/\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/MeetupIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN FOOTER // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templateFooter\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'footerContainer\' style=\'padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;\'> <em>Copyright © 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href=\'{course_url}\'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href=\'{email_settings_url}\'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html>','{course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n',NULL),(2,'<!DOCTYPE html PUBLIC \'-//W3C//DTD XHTML 1.0 Transitional//EN\' \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'><html xmlns:fb=\'http://www.facebook.com/2008/fbml\' xmlns:og=\'http://opengraph.org/schema/\'> <head><meta property=\'og:title\' content=\'Update from {course_title}\'/><meta property=\'fb:page_id\' content=\'43929265776\' /> <meta http-equiv=\'Content-Type\' content=\'text/html; charset=UTF-8\'> THIS IS A BRANDED HTML TEMPLATE <title>Update from {course_title}</title> </head> <body leftmargin=\'0\' marginwidth=\'0\' topmargin=\'0\' marginheight=\'0\' offset=\'0\' style=\'margin: 0;padding: 0;background-color: #ffffff;\'> <center> <table align=\'center\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' height=\'100%\' width=\'100%\' id=\'bodyTable\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;\'> <tr> <td align=\'center\' valign=\'top\' id=\'bodyCell\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;\'> <!-- BEGIN TEMPLATE // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN PREHEADER // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templatePreheader\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'preheaderContainer\' style=\'padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'366\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;\'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN HEADER // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templateHeader\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'headerContainer\' style=\'padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnImageBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnImageBlockOuter\'> <tr> <td valign=\'top\' style=\'padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\' class=\'mcnImageBlockInner\'> <table align=\'left\' width=\'100%\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' class=\'mcnImageContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td class=\'mcnImageContent\' valign=\'top\' style=\'padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <a href=\'http://edx.org\' title=\'\' class=\'\' target=\'_self\' style=\'word-wrap: break-word !important;\'> <img align=\'left\' alt=\'edX\' src=\'http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg\' width=\'564.0000152587891\' style=\'max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;\' class=\'mcnImage\'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'599\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;\'> <div style=\'text-align: right;\'><span style=\'font-size:11px;\'><span style=\'color:#00a0e3;\'>Connect with edX:</span></span> <a href=\'http://facebook.com/edxonline\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/FacebookIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://twitter.com/edxonline\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/TwitterIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'https://plus.google.com/108235383044095082735\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://www.meetup.com/edX-Communities/\' target=\'_blank\' style=\'color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/MeetupIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN BODY // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templateBody\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'bodyContainer\' style=\'padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnCaptionBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnCaptionBlockOuter\'> <tr> <td class=\'mcnCaptionBlockInner\' valign=\'top\' style=\'padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' class=\'mcnCaptionLeftContentOuter\' width=\'100%\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnCaptionLeftContentInner\' style=\'padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'right\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' class=\'mcnCaptionLeftImageContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td class=\'mcnCaptionLeftImageContent\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <img alt=\'\' src=\'{course_image_url}\' width=\'176\' style=\'max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;\' class=\'mcnImage\'> </td> </tr> </tbody></table> <table class=\'mcnCaptionLeftTextContentContainer\' align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'352\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;\'> <h3 class=\'null\' style=\'display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;\'><strong style=\'font-size: 22px;\'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;\'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnDividerBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnDividerBlockOuter\'> <tr> <td class=\'mcnDividerBlockInner\' style=\'padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table class=\'mcnDividerContent\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' style=\'border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;\'> <div style=\'text-align: right;\'><a href=\'http://facebook.com/edxonline\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/FacebookIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://twitter.com/edxonline\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/TwitterIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'https://plus.google.com/108235383044095082735\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a> <a href=\'http://www.meetup.com/edX-Communities/\' target=\'_blank\' style=\'color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;\'><img align=\'none\' height=\'16\' src=\'http://courses.edx.org/static/images/bulk_email/MeetupIcon.png\' style=\'width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;\' width=\'16\'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <!-- BEGIN FOOTER // --> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' id=\'templateFooter\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;\'> <tr> <td align=\'center\' valign=\'top\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'templateContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tr> <td valign=\'top\' class=\'footerContainer\' style=\'padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'><table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\' class=\'mcnTextBlock\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody class=\'mcnTextBlockOuter\'> <tr> <td valign=\'top\' class=\'mcnTextBlockInner\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <table align=\'left\' border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'600\' class=\'mcnTextContentContainer\' style=\'border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;\'> <tbody><tr> <td valign=\'top\' class=\'mcnTextContent\' style=\'padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;\'> <em>Copyright © 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href=\'{course_url}\'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href=\'{email_settings_url}\'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html>','THIS IS A BRANDED TEXT TEMPLATE. {course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n','branded.template'); | |
/*!40000 ALTER TABLE `bulk_email_courseemailtemplate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_coursemodetarget` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_coursemodetarget`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_coursemodetarget` ( | |
`target_ptr_id` int(11) NOT NULL, | |
`track_id` int(11) NOT NULL, | |
PRIMARY KEY (`target_ptr_id`), | |
KEY `bulk_email_coursemod_track_id_2b68bb43_fk_course_mo` (`track_id`), | |
CONSTRAINT `bulk_email_coursemod_target_ptr_id_f2f054ce_fk_bulk_emai` FOREIGN KEY (`target_ptr_id`) REFERENCES `bulk_email_target` (`id`), | |
CONSTRAINT `bulk_email_coursemod_track_id_2b68bb43_fk_course_mo` FOREIGN KEY (`track_id`) REFERENCES `course_modes_coursemode` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_coursemodetarget` | |
-- | |
LOCK TABLES `bulk_email_coursemodetarget` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_coursemodetarget` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_coursemodetarget` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_optout` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_optout`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_optout` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `bulk_email_optout_user_id_course_id_e0e2d6a6_uniq` (`user_id`,`course_id`), | |
KEY `bulk_email_optout_course_id_5c5836a8` (`course_id`), | |
CONSTRAINT `bulk_email_optout_user_id_ff6223d6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_optout` | |
-- | |
LOCK TABLES `bulk_email_optout` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_optout` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_optout` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `bulk_email_target` | |
-- | |
DROP TABLE IF EXISTS `bulk_email_target`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `bulk_email_target` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`target_type` varchar(64) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `bulk_email_target` | |
-- | |
LOCK TABLES `bulk_email_target` WRITE; | |
/*!40000 ALTER TABLE `bulk_email_target` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `bulk_email_target` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `catalog_catalogintegration` | |
-- | |
DROP TABLE IF EXISTS `catalog_catalogintegration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `catalog_catalogintegration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`internal_api_url` varchar(200) NOT NULL, | |
`cache_ttl` int(10) unsigned NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`service_username` varchar(100) NOT NULL, | |
`page_size` int(10) unsigned NOT NULL, | |
`long_term_cache_ttl` int(10) unsigned NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `catalog_catalogintegration` | |
-- | |
LOCK TABLES `catalog_catalogintegration` WRITE; | |
/*!40000 ALTER TABLE `catalog_catalogintegration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `catalog_catalogintegration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `celery_taskmeta` | |
-- | |
DROP TABLE IF EXISTS `celery_taskmeta`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `celery_taskmeta` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`task_id` varchar(255) NOT NULL, | |
`status` varchar(50) NOT NULL, | |
`result` longtext, | |
`date_done` datetime(6) NOT NULL, | |
`traceback` longtext, | |
`hidden` tinyint(1) NOT NULL, | |
`meta` longtext, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `task_id` (`task_id`), | |
KEY `celery_taskmeta_hidden_23fd02dc` (`hidden`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `celery_taskmeta` | |
-- | |
LOCK TABLES `celery_taskmeta` WRITE; | |
/*!40000 ALTER TABLE `celery_taskmeta` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `celery_taskmeta` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `celery_tasksetmeta` | |
-- | |
DROP TABLE IF EXISTS `celery_tasksetmeta`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `celery_tasksetmeta` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`taskset_id` varchar(255) NOT NULL, | |
`result` longtext NOT NULL, | |
`date_done` datetime(6) NOT NULL, | |
`hidden` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `taskset_id` (`taskset_id`), | |
KEY `celery_tasksetmeta_hidden_593cfc24` (`hidden`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `celery_tasksetmeta` | |
-- | |
LOCK TABLES `celery_tasksetmeta` WRITE; | |
/*!40000 ALTER TABLE `celery_tasksetmeta` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `celery_tasksetmeta` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `celery_utils_chorddata` | |
-- | |
DROP TABLE IF EXISTS `celery_utils_chorddata`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `celery_utils_chorddata` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`serialized_callback` longtext NOT NULL, | |
`callback_result_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `callback_result_id` (`callback_result_id`), | |
CONSTRAINT `celery_utils_chordda_callback_result_id_08132c0d_fk_celery_ta` FOREIGN KEY (`callback_result_id`) REFERENCES `celery_taskmeta` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `celery_utils_chorddata` | |
-- | |
LOCK TABLES `celery_utils_chorddata` WRITE; | |
/*!40000 ALTER TABLE `celery_utils_chorddata` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `celery_utils_chorddata` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `celery_utils_chorddata_completed_results` | |
-- | |
DROP TABLE IF EXISTS `celery_utils_chorddata_completed_results`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `celery_utils_chorddata_completed_results` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`chorddata_id` int(11) NOT NULL, | |
`taskmeta_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `celery_utils_chorddata_c_chorddata_id_taskmeta_id_ad5ac372_uniq` (`chorddata_id`,`taskmeta_id`), | |
KEY `celery_utils_chordda_taskmeta_id_f86c2999_fk_celery_ta` (`taskmeta_id`), | |
CONSTRAINT `celery_utils_chordda_chorddata_id_216509e3_fk_celery_ut` FOREIGN KEY (`chorddata_id`) REFERENCES `celery_utils_chorddata` (`id`), | |
CONSTRAINT `celery_utils_chordda_taskmeta_id_f86c2999_fk_celery_ta` FOREIGN KEY (`taskmeta_id`) REFERENCES `celery_taskmeta` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `celery_utils_chorddata_completed_results` | |
-- | |
LOCK TABLES `celery_utils_chorddata_completed_results` WRITE; | |
/*!40000 ALTER TABLE `celery_utils_chorddata_completed_results` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `celery_utils_chorddata_completed_results` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `celery_utils_failedtask` | |
-- | |
DROP TABLE IF EXISTS `celery_utils_failedtask`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `celery_utils_failedtask` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`task_name` varchar(255) NOT NULL, | |
`task_id` varchar(255) NOT NULL, | |
`args` longtext NOT NULL, | |
`kwargs` longtext NOT NULL, | |
`exc` varchar(255) NOT NULL, | |
`datetime_resolved` datetime(6) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `celery_utils_failedtask_task_name_exc_efb8c9be_idx` (`task_name`,`exc`), | |
KEY `celery_utils_failedtask_task_id_37af0933` (`task_id`), | |
KEY `celery_utils_failedtask_datetime_resolved_8160e407` (`datetime_resolved`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `celery_utils_failedtask` | |
-- | |
LOCK TABLES `celery_utils_failedtask` WRITE; | |
/*!40000 ALTER TABLE `celery_utils_failedtask` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `celery_utils_failedtask` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificategenerationconfiguration` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificategenerationconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificategenerationconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `certificates_certifi_changed_by_id_a6d06e99_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `certificates_certifi_changed_by_id_a6d06e99_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificategenerationconfiguration` | |
-- | |
LOCK TABLES `certificates_certificategenerationconfiguration` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificategenerationconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_certificategenerationconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificategenerationcoursesetting` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificategenerationcoursesetting`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificategenerationcoursesetting` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_key` varchar(255) NOT NULL, | |
`language_specific_templates_enabled` tinyint(1) NOT NULL, | |
`self_generation_enabled` tinyint(1) NOT NULL, | |
`include_hours_of_effort` tinyint(1) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `certificates_certificategen_course_key_dd10af41` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificategenerationcoursesetting` | |
-- | |
LOCK TABLES `certificates_certificategenerationcoursesetting` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificategenerationcoursesetting` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_certificategenerationcoursesetting` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificategenerationhistory` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificategenerationhistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificategenerationhistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`is_regeneration` tinyint(1) NOT NULL, | |
`generated_by_id` int(11) NOT NULL, | |
`instructor_task_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user` (`generated_by_id`), | |
KEY `certificates_certifi_instructor_task_id_8f7176a6_fk_instructo` (`instructor_task_id`), | |
CONSTRAINT `certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user` FOREIGN KEY (`generated_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `certificates_certifi_instructor_task_id_8f7176a6_fk_instructo` FOREIGN KEY (`instructor_task_id`) REFERENCES `instructor_task_instructortask` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificategenerationhistory` | |
-- | |
LOCK TABLES `certificates_certificategenerationhistory` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificategenerationhistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_certificategenerationhistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificatehtmlviewconfiguration` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificatehtmlviewconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificatehtmlviewconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`configuration` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `certificates_certifi_changed_by_id_bcf656f2_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `certificates_certifi_changed_by_id_bcf656f2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificatehtmlviewconfiguration` | |
-- | |
LOCK TABLES `certificates_certificatehtmlviewconfiguration` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificatehtmlviewconfiguration` DISABLE KEYS */; | |
INSERT INTO `certificates_certificatehtmlviewconfiguration` VALUES (1,'2018-09-11 19:58:21.484679',0,'{\"default\": {\"accomplishment_class_append\": \"accomplishment-certificate\", \"platform_name\": \"Your Platform Name Here\", \"logo_src\": \"/static/certificates/images/logo.png\", \"logo_url\": \"http://www.example.com\", \"company_verified_certificate_url\": \"http://www.example.com/verified-certificate\", \"company_privacy_url\": \"http://www.example.com/privacy-policy\", \"company_tos_url\": \"http://www.example.com/terms-service\", \"company_about_url\": \"http://www.example.com/about-us\"}, \"verified\": {\"certificate_type\": \"Verified\", \"certificate_title\": \"Verified Certificate of Achievement\"}, \"honor\": {\"certificate_type\": \"Honor Code\", \"certificate_title\": \"Certificate of Achievement\"}}',NULL); | |
/*!40000 ALTER TABLE `certificates_certificatehtmlviewconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificateinvalidation` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificateinvalidation`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificateinvalidation` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`notes` longtext, | |
`active` tinyint(1) NOT NULL, | |
`generated_certificate_id` int(11) NOT NULL, | |
`invalidated_by_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `certificates_certifi_generated_certificat_31bed498_fk_certifica` (`generated_certificate_id`), | |
KEY `certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user` (`invalidated_by_id`), | |
CONSTRAINT `certificates_certifi_generated_certificat_31bed498_fk_certifica` FOREIGN KEY (`generated_certificate_id`) REFERENCES `certificates_generatedcertificate` (`id`), | |
CONSTRAINT `certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user` FOREIGN KEY (`invalidated_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificateinvalidation` | |
-- | |
LOCK TABLES `certificates_certificateinvalidation` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificateinvalidation` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_certificateinvalidation` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificatetemplate` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificatetemplate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificatetemplate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`description` varchar(255) DEFAULT NULL, | |
`template` longtext NOT NULL, | |
`organization_id` int(11) DEFAULT NULL, | |
`course_key` varchar(255) DEFAULT NULL, | |
`mode` varchar(125) DEFAULT NULL, | |
`is_active` tinyint(1) NOT NULL, | |
`language` varchar(2) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `certificates_certificate_organization_id_course_k_88e26c0d_uniq` (`organization_id`,`course_key`,`mode`,`language`), | |
KEY `certificates_certificatetemplate_organization_id_030a747d` (`organization_id`), | |
KEY `certificates_certificatetemplate_course_key_9a6a823d` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificatetemplate` | |
-- | |
LOCK TABLES `certificates_certificatetemplate` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificatetemplate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_certificatetemplate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificatetemplateasset` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificatetemplateasset`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificatetemplateasset` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`description` varchar(255) DEFAULT NULL, | |
`asset` varchar(255) NOT NULL, | |
`asset_slug` varchar(255) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `asset_slug` (`asset_slug`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificatetemplateasset` | |
-- | |
LOCK TABLES `certificates_certificatetemplateasset` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificatetemplateasset` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_certificatetemplateasset` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_certificatewhitelist` | |
-- | |
DROP TABLE IF EXISTS `certificates_certificatewhitelist`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_certificatewhitelist` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`whitelist` tinyint(1) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`notes` longtext, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `certificates_certifi_user_id_c2ab1b7c_fk_auth_user` (`user_id`), | |
CONSTRAINT `certificates_certifi_user_id_c2ab1b7c_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_certificatewhitelist` | |
-- | |
LOCK TABLES `certificates_certificatewhitelist` WRITE; | |
/*!40000 ALTER TABLE `certificates_certificatewhitelist` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_certificatewhitelist` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_examplecertificate` | |
-- | |
DROP TABLE IF EXISTS `certificates_examplecertificate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_examplecertificate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`description` varchar(255) NOT NULL, | |
`uuid` varchar(255) NOT NULL, | |
`access_key` varchar(255) NOT NULL, | |
`full_name` varchar(255) NOT NULL, | |
`template` varchar(255) NOT NULL, | |
`status` varchar(255) NOT NULL, | |
`error_reason` longtext, | |
`download_url` varchar(255) DEFAULT NULL, | |
`example_cert_set_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `uuid` (`uuid`), | |
KEY `certificates_examplecertificate_access_key_8b745a5d` (`access_key`), | |
KEY `certificates_example_example_cert_set_id_7e660917_fk_certifica` (`example_cert_set_id`), | |
CONSTRAINT `certificates_example_example_cert_set_id_7e660917_fk_certifica` FOREIGN KEY (`example_cert_set_id`) REFERENCES `certificates_examplecertificateset` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_examplecertificate` | |
-- | |
LOCK TABLES `certificates_examplecertificate` WRITE; | |
/*!40000 ALTER TABLE `certificates_examplecertificate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_examplecertificate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_examplecertificateset` | |
-- | |
DROP TABLE IF EXISTS `certificates_examplecertificateset`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_examplecertificateset` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_key` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `certificates_examplecertificateset_course_key_16497ee9` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_examplecertificateset` | |
-- | |
LOCK TABLES `certificates_examplecertificateset` WRITE; | |
/*!40000 ALTER TABLE `certificates_examplecertificateset` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_examplecertificateset` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `certificates_generatedcertificate` | |
-- | |
DROP TABLE IF EXISTS `certificates_generatedcertificate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `certificates_generatedcertificate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`verify_uuid` varchar(32) NOT NULL, | |
`download_uuid` varchar(32) NOT NULL, | |
`download_url` varchar(128) NOT NULL, | |
`grade` varchar(5) NOT NULL, | |
`key` varchar(32) NOT NULL, | |
`distinction` tinyint(1) NOT NULL, | |
`status` varchar(32) NOT NULL, | |
`mode` varchar(32) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`created_date` datetime(6) NOT NULL, | |
`modified_date` datetime(6) NOT NULL, | |
`error_reason` varchar(512) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `certificates_generatedce_user_id_course_id_fc1bb3ee_uniq` (`user_id`,`course_id`), | |
KEY `certificates_generatedcertificate_verify_uuid_97405316` (`verify_uuid`), | |
CONSTRAINT `certificates_generat_user_id_54119d22_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `certificates_generatedcertificate` | |
-- | |
LOCK TABLES `certificates_generatedcertificate` WRITE; | |
/*!40000 ALTER TABLE `certificates_generatedcertificate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `certificates_generatedcertificate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `commerce_commerceconfiguration` | |
-- | |
DROP TABLE IF EXISTS `commerce_commerceconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `commerce_commerceconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`checkout_on_ecommerce_service` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`cache_ttl` int(10) unsigned NOT NULL, | |
`receipt_page` varchar(255) NOT NULL, | |
`enable_automatic_refund_approval` tinyint(1) NOT NULL, | |
`basket_checkout_page` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `commerce_commerceconfiguration` | |
-- | |
LOCK TABLES `commerce_commerceconfiguration` WRITE; | |
/*!40000 ALTER TABLE `commerce_commerceconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `commerce_commerceconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `completion_blockcompletion` | |
-- | |
DROP TABLE IF EXISTS `completion_blockcompletion`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `completion_blockcompletion` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`id` bigint(20) NOT NULL AUTO_INCREMENT, | |
`course_key` varchar(255) NOT NULL, | |
`block_key` varchar(255) NOT NULL, | |
`block_type` varchar(64) NOT NULL, | |
`completion` double NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `completion_blockcompleti_course_key_block_key_use_b15bac54_uniq` (`course_key`,`block_key`,`user_id`), | |
KEY `completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx` (`course_key`,`block_type`,`user_id`), | |
KEY `completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx` (`user_id`,`course_key`,`modified`), | |
CONSTRAINT `completion_blockcompletion_user_id_20994c23_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `completion_blockcompletion` | |
-- | |
LOCK TABLES `completion_blockcompletion` WRITE; | |
/*!40000 ALTER TABLE `completion_blockcompletion` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `completion_blockcompletion` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `consent_datasharingconsent` | |
-- | |
DROP TABLE IF EXISTS `consent_datasharingconsent`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `consent_datasharingconsent` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`username` varchar(255) NOT NULL, | |
`granted` tinyint(1) DEFAULT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `consent_datasharingconse_enterprise_customer_id_u_8bdd34e4_uniq` (`enterprise_customer_id`,`username`,`course_id`), | |
CONSTRAINT `consent_datasharingc_enterprise_customer__f46c6b77_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `consent_datasharingconsent` | |
-- | |
LOCK TABLES `consent_datasharingconsent` WRITE; | |
/*!40000 ALTER TABLE `consent_datasharingconsent` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `consent_datasharingconsent` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `consent_datasharingconsenttextoverrides` | |
-- | |
DROP TABLE IF EXISTS `consent_datasharingconsenttextoverrides`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `consent_datasharingconsenttextoverrides` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`page_title` varchar(255) NOT NULL, | |
`left_sidebar_text` longtext, | |
`top_paragraph` longtext, | |
`agreement_text` longtext, | |
`continue_text` varchar(255) NOT NULL, | |
`abort_text` varchar(255) NOT NULL, | |
`policy_dropdown_header` varchar(255) DEFAULT NULL, | |
`policy_paragraph` longtext, | |
`confirmation_modal_header` varchar(255) NOT NULL, | |
`confirmation_modal_text` longtext NOT NULL, | |
`modal_affirm_decline_text` varchar(255) NOT NULL, | |
`modal_abort_decline_text` varchar(255) NOT NULL, | |
`declined_notification_title` longtext NOT NULL, | |
`declined_notification_message` longtext NOT NULL, | |
`published` tinyint(1) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), | |
CONSTRAINT `consent_datasharingc_enterprise_customer__b979dfc1_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `consent_datasharingconsenttextoverrides` | |
-- | |
LOCK TABLES `consent_datasharingconsenttextoverrides` WRITE; | |
/*!40000 ALTER TABLE `consent_datasharingconsenttextoverrides` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `consent_datasharingconsenttextoverrides` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `consent_historicaldatasharingconsent` | |
-- | |
DROP TABLE IF EXISTS `consent_historicaldatasharingconsent`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `consent_historicaldatasharingconsent` ( | |
`id` int(11) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`username` varchar(255) NOT NULL, | |
`granted` tinyint(1) DEFAULT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`history_date` datetime(6) NOT NULL, | |
`history_type` varchar(1) NOT NULL, | |
`enterprise_customer_id` char(32) DEFAULT NULL, | |
`history_user_id` int(11) DEFAULT NULL, | |
`history_change_reason` varchar(100) DEFAULT NULL, | |
PRIMARY KEY (`history_id`), | |
KEY `consent_historicalda_history_user_id_08d7bf89_fk_auth_user` (`history_user_id`), | |
KEY `consent_historicaldatasharingconsent_id_69bef37e` (`id`), | |
KEY `consent_historicaldatashari_enterprise_customer_id_35c184bf` (`enterprise_customer_id`), | |
CONSTRAINT `consent_historicalda_history_user_id_08d7bf89_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `consent_historicaldatasharingconsent` | |
-- | |
LOCK TABLES `consent_historicaldatasharingconsent` WRITE; | |
/*!40000 ALTER TABLE `consent_historicaldatasharingconsent` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `consent_historicaldatasharingconsent` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `contentserver_cdnuseragentsconfig` | |
-- | |
DROP TABLE IF EXISTS `contentserver_cdnuseragentsconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `contentserver_cdnuseragentsconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`cdn_user_agents` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `contentserver_cdnuseragentsconfig` | |
-- | |
LOCK TABLES `contentserver_cdnuseragentsconfig` WRITE; | |
/*!40000 ALTER TABLE `contentserver_cdnuseragentsconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `contentserver_cdnuseragentsconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `contentserver_courseassetcachettlconfig` | |
-- | |
DROP TABLE IF EXISTS `contentserver_courseassetcachettlconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `contentserver_courseassetcachettlconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`cache_ttl` int(10) unsigned NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `contentserver_course_changed_by_id_a9213047_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `contentserver_course_changed_by_id_a9213047_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `contentserver_courseassetcachettlconfig` | |
-- | |
LOCK TABLES `contentserver_courseassetcachettlconfig` WRITE; | |
/*!40000 ALTER TABLE `contentserver_courseassetcachettlconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `contentserver_courseassetcachettlconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `contentstore_pushnotificationconfig` | |
-- | |
DROP TABLE IF EXISTS `contentstore_pushnotificationconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `contentstore_pushnotificationconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `contentstore_pushnot_changed_by_id_3c3c4833_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `contentstore_pushnot_changed_by_id_3c3c4833_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `contentstore_pushnotificationconfig` | |
-- | |
LOCK TABLES `contentstore_pushnotificationconfig` WRITE; | |
/*!40000 ALTER TABLE `contentstore_pushnotificationconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `contentstore_pushnotificationconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `contentstore_videouploadconfig` | |
-- | |
DROP TABLE IF EXISTS `contentstore_videouploadconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `contentstore_videouploadconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`profile_whitelist` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `contentstore_videouploadconfig` | |
-- | |
LOCK TABLES `contentstore_videouploadconfig` WRITE; | |
/*!40000 ALTER TABLE `contentstore_videouploadconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `contentstore_videouploadconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `cors_csrf_xdomainproxyconfiguration` | |
-- | |
DROP TABLE IF EXISTS `cors_csrf_xdomainproxyconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `cors_csrf_xdomainproxyconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`whitelist` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `cors_csrf_xdomainproxyconfiguration` | |
-- | |
LOCK TABLES `cors_csrf_xdomainproxyconfiguration` WRITE; | |
/*!40000 ALTER TABLE `cors_csrf_xdomainproxyconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `cors_csrf_xdomainproxyconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_action_state_coursererunstate` | |
-- | |
DROP TABLE IF EXISTS `course_action_state_coursererunstate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_action_state_coursererunstate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created_time` datetime(6) NOT NULL, | |
`updated_time` datetime(6) NOT NULL, | |
`course_key` varchar(255) NOT NULL, | |
`action` varchar(100) NOT NULL, | |
`state` varchar(50) NOT NULL, | |
`should_display` tinyint(1) NOT NULL, | |
`message` varchar(1000) NOT NULL, | |
`source_course_key` varchar(255) NOT NULL, | |
`display_name` varchar(255) NOT NULL, | |
`created_user_id` int(11) DEFAULT NULL, | |
`updated_user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_action_state_cour_course_key_action_2a8434fb_uniq` (`course_key`,`action`), | |
KEY `course_action_state__created_user_id_5373c218_fk_auth_user` (`created_user_id`), | |
KEY `course_action_state__updated_user_id_3689fe4b_fk_auth_user` (`updated_user_id`), | |
KEY `course_action_state_coursererunstate_course_key_f87bef79` (`course_key`), | |
KEY `course_action_state_coursererunstate_action_149773f1` (`action`), | |
KEY `course_action_state_coursererunstate_source_course_key_b5037317` (`source_course_key`), | |
CONSTRAINT `course_action_state__created_user_id_5373c218_fk_auth_user` FOREIGN KEY (`created_user_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `course_action_state__updated_user_id_3689fe4b_fk_auth_user` FOREIGN KEY (`updated_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_action_state_coursererunstate` | |
-- | |
LOCK TABLES `course_action_state_coursererunstate` WRITE; | |
/*!40000 ALTER TABLE `course_action_state_coursererunstate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_action_state_coursererunstate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_creators_coursecreator` | |
-- | |
DROP TABLE IF EXISTS `course_creators_coursecreator`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_creators_coursecreator` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`state_changed` datetime(6) NOT NULL, | |
`state` varchar(24) NOT NULL, | |
`note` varchar(512) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
CONSTRAINT `course_creators_coursecreator_user_id_e4da548d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_creators_coursecreator` | |
-- | |
LOCK TABLES `course_creators_coursecreator` WRITE; | |
/*!40000 ALTER TABLE `course_creators_coursecreator` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_creators_coursecreator` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_goals_coursegoal` | |
-- | |
DROP TABLE IF EXISTS `course_goals_coursegoal`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_goals_coursegoal` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_key` varchar(255) NOT NULL, | |
`goal_key` varchar(100) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_goals_coursegoal_user_id_course_key_052bc0d3_uniq` (`user_id`,`course_key`), | |
KEY `course_goals_coursegoal_course_key_5585ca51` (`course_key`), | |
CONSTRAINT `course_goals_coursegoal_user_id_0a07e3db_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_goals_coursegoal` | |
-- | |
LOCK TABLES `course_goals_coursegoal` WRITE; | |
/*!40000 ALTER TABLE `course_goals_coursegoal` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_goals_coursegoal` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_groups_cohortmembership` | |
-- | |
DROP TABLE IF EXISTS `course_groups_cohortmembership`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_groups_cohortmembership` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`course_user_group_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_groups_cohortmembership_user_id_course_id_c247eb7f_uniq` (`user_id`,`course_id`), | |
KEY `course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr` (`course_user_group_id`), | |
CONSTRAINT `course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`), | |
CONSTRAINT `course_groups_cohortmembership_user_id_aae5b8e7_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_groups_cohortmembership` | |
-- | |
LOCK TABLES `course_groups_cohortmembership` WRITE; | |
/*!40000 ALTER TABLE `course_groups_cohortmembership` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_groups_cohortmembership` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_groups_coursecohort` | |
-- | |
DROP TABLE IF EXISTS `course_groups_coursecohort`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_groups_coursecohort` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`assignment_type` varchar(20) NOT NULL, | |
`course_user_group_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_user_group_id` (`course_user_group_id`), | |
CONSTRAINT `course_groups_course_course_user_group_id_ec5703ee_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_groups_coursecohort` | |
-- | |
LOCK TABLES `course_groups_coursecohort` WRITE; | |
/*!40000 ALTER TABLE `course_groups_coursecohort` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_groups_coursecohort` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_groups_coursecohortssettings` | |
-- | |
DROP TABLE IF EXISTS `course_groups_coursecohortssettings`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_groups_coursecohortssettings` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`is_cohorted` tinyint(1) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`cohorted_discussions` longtext, | |
`always_cohort_inline_discussions` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_groups_coursecohortssettings` | |
-- | |
LOCK TABLES `course_groups_coursecohortssettings` WRITE; | |
/*!40000 ALTER TABLE `course_groups_coursecohortssettings` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_groups_coursecohortssettings` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_groups_courseusergroup` | |
-- | |
DROP TABLE IF EXISTS `course_groups_courseusergroup`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_groups_courseusergroup` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`group_type` varchar(20) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_groups_courseusergroup_name_course_id_b767231d_uniq` (`name`,`course_id`), | |
KEY `course_groups_courseusergroup_course_id_902aea4c` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_groups_courseusergroup` | |
-- | |
LOCK TABLES `course_groups_courseusergroup` WRITE; | |
/*!40000 ALTER TABLE `course_groups_courseusergroup` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_groups_courseusergroup` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_groups_courseusergroup_users` | |
-- | |
DROP TABLE IF EXISTS `course_groups_courseusergroup_users`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_groups_courseusergroup_users` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`courseusergroup_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_groups_courseuser_courseusergroup_id_user__694e8c30_uniq` (`courseusergroup_id`,`user_id`), | |
KEY `course_groups_course_user_id_28aff981_fk_auth_user` (`user_id`), | |
CONSTRAINT `course_groups_course_courseusergroup_id_26a7966f_fk_course_gr` FOREIGN KEY (`courseusergroup_id`) REFERENCES `course_groups_courseusergroup` (`id`), | |
CONSTRAINT `course_groups_course_user_id_28aff981_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_groups_courseusergroup_users` | |
-- | |
LOCK TABLES `course_groups_courseusergroup_users` WRITE; | |
/*!40000 ALTER TABLE `course_groups_courseusergroup_users` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_groups_courseusergroup_users` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_groups_courseusergrouppartitiongroup` | |
-- | |
DROP TABLE IF EXISTS `course_groups_courseusergrouppartitiongroup`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_groups_courseusergrouppartitiongroup` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`partition_id` int(11) NOT NULL, | |
`group_id` int(11) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`updated_at` datetime(6) NOT NULL, | |
`course_user_group_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_user_group_id` (`course_user_group_id`), | |
CONSTRAINT `course_groups_course_course_user_group_id_6032d512_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_groups_courseusergrouppartitiongroup` | |
-- | |
LOCK TABLES `course_groups_courseusergrouppartitiongroup` WRITE; | |
/*!40000 ALTER TABLE `course_groups_courseusergrouppartitiongroup` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_groups_courseusergrouppartitiongroup` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_groups_unregisteredlearnercohortassignments` | |
-- | |
DROP TABLE IF EXISTS `course_groups_unregisteredlearnercohortassignments`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_groups_unregisteredlearnercohortassignments` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`email` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`course_user_group_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_groups_unregister_course_id_email_81a9d1db_uniq` (`course_id`,`email`), | |
KEY `course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr` (`course_user_group_id`), | |
KEY `course_groups_unregisteredl_email_05d0e40e` (`email`), | |
CONSTRAINT `course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_groups_unregisteredlearnercohortassignments` | |
-- | |
LOCK TABLES `course_groups_unregisteredlearnercohortassignments` WRITE; | |
/*!40000 ALTER TABLE `course_groups_unregisteredlearnercohortassignments` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_groups_unregisteredlearnercohortassignments` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_modes_coursemode` | |
-- | |
DROP TABLE IF EXISTS `course_modes_coursemode`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_modes_coursemode` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`mode_slug` varchar(100) NOT NULL, | |
`mode_display_name` varchar(255) NOT NULL, | |
`min_price` int(11) NOT NULL, | |
`currency` varchar(8) NOT NULL, | |
`expiration_datetime` datetime(6) DEFAULT NULL, | |
`expiration_date` date DEFAULT NULL, | |
`suggested_prices` varchar(255) NOT NULL, | |
`description` longtext, | |
`sku` varchar(255) DEFAULT NULL, | |
`expiration_datetime_is_explicit` tinyint(1) NOT NULL, | |
`bulk_sku` varchar(255) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_modes_coursemode_course_id_mode_slug_curr_56f8e675_uniq` (`course_id`,`mode_slug`,`currency`), | |
KEY `course_modes_coursemode_course_id_3daf3b9d` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_modes_coursemode` | |
-- | |
LOCK TABLES `course_modes_coursemode` WRITE; | |
/*!40000 ALTER TABLE `course_modes_coursemode` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_modes_coursemode` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_modes_coursemodeexpirationconfig` | |
-- | |
DROP TABLE IF EXISTS `course_modes_coursemodeexpirationconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_modes_coursemodeexpirationconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`verification_window` bigint(20) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `course_modes_coursem_changed_by_id_208463ee_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `course_modes_coursem_changed_by_id_208463ee_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_modes_coursemodeexpirationconfig` | |
-- | |
LOCK TABLES `course_modes_coursemodeexpirationconfig` WRITE; | |
/*!40000 ALTER TABLE `course_modes_coursemodeexpirationconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_modes_coursemodeexpirationconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_modes_coursemodesarchive` | |
-- | |
DROP TABLE IF EXISTS `course_modes_coursemodesarchive`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_modes_coursemodesarchive` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`mode_slug` varchar(100) NOT NULL, | |
`mode_display_name` varchar(255) NOT NULL, | |
`min_price` int(11) NOT NULL, | |
`suggested_prices` varchar(255) NOT NULL, | |
`currency` varchar(8) NOT NULL, | |
`expiration_date` date DEFAULT NULL, | |
`expiration_datetime` datetime(6) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `course_modes_coursemodesarchive_course_id_f67bbd35` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_modes_coursemodesarchive` | |
-- | |
LOCK TABLES `course_modes_coursemodesarchive` WRITE; | |
/*!40000 ALTER TABLE `course_modes_coursemodesarchive` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_modes_coursemodesarchive` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_overviews_courseoverview` | |
-- | |
DROP TABLE IF EXISTS `course_overviews_courseoverview`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_overviews_courseoverview` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`version` int(11) NOT NULL, | |
`id` varchar(255) NOT NULL, | |
`_location` varchar(255) NOT NULL, | |
`display_name` longtext, | |
`display_number_with_default` longtext NOT NULL, | |
`display_org_with_default` longtext NOT NULL, | |
`start` datetime(6) DEFAULT NULL, | |
`end` datetime(6) DEFAULT NULL, | |
`advertised_start` longtext, | |
`course_image_url` longtext NOT NULL, | |
`social_sharing_url` longtext, | |
`end_of_course_survey_url` longtext, | |
`certificates_display_behavior` longtext, | |
`certificates_show_before_end` tinyint(1) NOT NULL, | |
`cert_html_view_enabled` tinyint(1) NOT NULL, | |
`has_any_active_web_certificate` tinyint(1) NOT NULL, | |
`cert_name_short` longtext NOT NULL, | |
`cert_name_long` longtext NOT NULL, | |
`lowest_passing_grade` decimal(5,2) DEFAULT NULL, | |
`days_early_for_beta` double DEFAULT NULL, | |
`mobile_available` tinyint(1) NOT NULL, | |
`visible_to_staff_only` tinyint(1) NOT NULL, | |
`_pre_requisite_courses_json` longtext NOT NULL, | |
`enrollment_start` datetime(6) DEFAULT NULL, | |
`enrollment_end` datetime(6) DEFAULT NULL, | |
`enrollment_domain` longtext, | |
`invitation_only` tinyint(1) NOT NULL, | |
`max_student_enrollments_allowed` int(11) DEFAULT NULL, | |
`announcement` datetime(6) DEFAULT NULL, | |
`catalog_visibility` longtext, | |
`course_video_url` longtext, | |
`effort` longtext, | |
`short_description` longtext, | |
`org` longtext NOT NULL, | |
`self_paced` tinyint(1) NOT NULL, | |
`marketing_url` longtext, | |
`eligible_for_financial_aid` tinyint(1) NOT NULL, | |
`language` longtext, | |
`certificate_available_date` datetime(6) DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_overviews_courseoverview` | |
-- | |
LOCK TABLES `course_overviews_courseoverview` WRITE; | |
/*!40000 ALTER TABLE `course_overviews_courseoverview` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_overviews_courseoverview` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_overviews_courseoverviewimageconfig` | |
-- | |
DROP TABLE IF EXISTS `course_overviews_courseoverviewimageconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_overviews_courseoverviewimageconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`small_width` int(11) NOT NULL, | |
`small_height` int(11) NOT NULL, | |
`large_width` int(11) NOT NULL, | |
`large_height` int(11) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_overviews_courseoverviewimageconfig` | |
-- | |
LOCK TABLES `course_overviews_courseoverviewimageconfig` WRITE; | |
/*!40000 ALTER TABLE `course_overviews_courseoverviewimageconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_overviews_courseoverviewimageconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_overviews_courseoverviewimageset` | |
-- | |
DROP TABLE IF EXISTS `course_overviews_courseoverviewimageset`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_overviews_courseoverviewimageset` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`small_url` longtext NOT NULL, | |
`large_url` longtext NOT NULL, | |
`course_overview_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_overview_id` (`course_overview_id`), | |
CONSTRAINT `course_overviews_cou_course_overview_id_ef7aa548_fk_course_ov` FOREIGN KEY (`course_overview_id`) REFERENCES `course_overviews_courseoverview` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_overviews_courseoverviewimageset` | |
-- | |
LOCK TABLES `course_overviews_courseoverviewimageset` WRITE; | |
/*!40000 ALTER TABLE `course_overviews_courseoverviewimageset` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_overviews_courseoverviewimageset` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_overviews_courseoverviewtab` | |
-- | |
DROP TABLE IF EXISTS `course_overviews_courseoverviewtab`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_overviews_courseoverviewtab` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`tab_id` varchar(50) NOT NULL, | |
`course_overview_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `course_overviews_cou_course_overview_id_71fa6321_fk_course_ov` (`course_overview_id`), | |
CONSTRAINT `course_overviews_cou_course_overview_id_71fa6321_fk_course_ov` FOREIGN KEY (`course_overview_id`) REFERENCES `course_overviews_courseoverview` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_overviews_courseoverviewtab` | |
-- | |
LOCK TABLES `course_overviews_courseoverviewtab` WRITE; | |
/*!40000 ALTER TABLE `course_overviews_courseoverviewtab` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_overviews_courseoverviewtab` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `course_structures_coursestructure` | |
-- | |
DROP TABLE IF EXISTS `course_structures_coursestructure`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `course_structures_coursestructure` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`structure_json` longtext, | |
`discussion_id_map_json` longtext, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `course_structures_coursestructure` | |
-- | |
LOCK TABLES `course_structures_coursestructure` WRITE; | |
/*!40000 ALTER TABLE `course_structures_coursestructure` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `course_structures_coursestructure` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_coursedynamicupgradedeadlineconfiguration` | |
-- | |
DROP TABLE IF EXISTS `courseware_coursedynamicupgradedeadlineconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_coursedynamicupgradedeadlineconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`deadline_days` smallint(5) unsigned NOT NULL, | |
`opt_out` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user` (`changed_by_id`), | |
KEY `courseware_coursedynamicupg_course_id_60b88041` (`course_id`), | |
CONSTRAINT `courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_coursedynamicupgradedeadlineconfiguration` | |
-- | |
LOCK TABLES `courseware_coursedynamicupgradedeadlineconfiguration` WRITE; | |
/*!40000 ALTER TABLE `courseware_coursedynamicupgradedeadlineconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_coursedynamicupgradedeadlineconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_dynamicupgradedeadlineconfiguration` | |
-- | |
DROP TABLE IF EXISTS `courseware_dynamicupgradedeadlineconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_dynamicupgradedeadlineconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`deadline_days` smallint(5) unsigned NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_dynamicupgradedeadlineconfiguration` | |
-- | |
LOCK TABLES `courseware_dynamicupgradedeadlineconfiguration` WRITE; | |
/*!40000 ALTER TABLE `courseware_dynamicupgradedeadlineconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_dynamicupgradedeadlineconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_offlinecomputedgrade` | |
-- | |
DROP TABLE IF EXISTS `courseware_offlinecomputedgrade`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_offlinecomputedgrade` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`created` datetime(6) DEFAULT NULL, | |
`updated` datetime(6) NOT NULL, | |
`gradeset` longtext, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `courseware_offlinecomputedgrade_user_id_course_id_18dfd343_uniq` (`user_id`,`course_id`), | |
KEY `courseware_offlinecomputedgrade_course_id_03e21ba7` (`course_id`), | |
KEY `courseware_offlinecomputedgrade_created_b5bca47f` (`created`), | |
KEY `courseware_offlinecomputedgrade_updated_6f3faff6` (`updated`), | |
CONSTRAINT `courseware_offlinecomputedgrade_user_id_14864cea_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_offlinecomputedgrade` | |
-- | |
LOCK TABLES `courseware_offlinecomputedgrade` WRITE; | |
/*!40000 ALTER TABLE `courseware_offlinecomputedgrade` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_offlinecomputedgrade` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_offlinecomputedgradelog` | |
-- | |
DROP TABLE IF EXISTS `courseware_offlinecomputedgradelog`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_offlinecomputedgradelog` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`created` datetime(6) DEFAULT NULL, | |
`seconds` int(11) NOT NULL, | |
`nstudents` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `courseware_offlinecomputedgradelog_course_id_1014e127` (`course_id`), | |
KEY `courseware_offlinecomputedgradelog_created_33076a1a` (`created`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_offlinecomputedgradelog` | |
-- | |
LOCK TABLES `courseware_offlinecomputedgradelog` WRITE; | |
/*!40000 ALTER TABLE `courseware_offlinecomputedgradelog` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_offlinecomputedgradelog` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_orgdynamicupgradedeadlineconfiguration` | |
-- | |
DROP TABLE IF EXISTS `courseware_orgdynamicupgradedeadlineconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_orgdynamicupgradedeadlineconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`org_id` varchar(255) NOT NULL, | |
`deadline_days` smallint(5) unsigned NOT NULL, | |
`opt_out` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user` (`changed_by_id`), | |
KEY `courseware_orgdynamicupgrad_org_id_85d3cbe4` (`org_id`), | |
CONSTRAINT `courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_orgdynamicupgradedeadlineconfiguration` | |
-- | |
LOCK TABLES `courseware_orgdynamicupgradedeadlineconfiguration` WRITE; | |
/*!40000 ALTER TABLE `courseware_orgdynamicupgradedeadlineconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_orgdynamicupgradedeadlineconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_studentfieldoverride` | |
-- | |
DROP TABLE IF EXISTS `courseware_studentfieldoverride`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_studentfieldoverride` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`location` varchar(255) NOT NULL, | |
`field` varchar(255) NOT NULL, | |
`value` longtext NOT NULL, | |
`student_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `courseware_studentfieldo_course_id_field_location_a1f7da25_uniq` (`course_id`,`field`,`location`,`student_id`), | |
KEY `courseware_studentfi_student_id_7a972765_fk_auth_user` (`student_id`), | |
KEY `courseware_studentfieldoverride_course_id_7ca0051c` (`course_id`), | |
KEY `courseware_studentfieldoverride_location_95ad5047` (`location`), | |
CONSTRAINT `courseware_studentfi_student_id_7a972765_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_studentfieldoverride` | |
-- | |
LOCK TABLES `courseware_studentfieldoverride` WRITE; | |
/*!40000 ALTER TABLE `courseware_studentfieldoverride` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_studentfieldoverride` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_studentmodule` | |
-- | |
DROP TABLE IF EXISTS `courseware_studentmodule`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_studentmodule` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`module_type` varchar(32) NOT NULL, | |
`module_id` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`state` longtext, | |
`grade` double DEFAULT NULL, | |
`max_grade` double DEFAULT NULL, | |
`done` varchar(8) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`student_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `courseware_studentmodule_student_id_module_id_cou_48e8deef_uniq` (`student_id`,`module_id`,`course_id`), | |
KEY `courseware_studentmodule_module_type_f4f8863f` (`module_type`), | |
KEY `courseware_studentmodule_course_id_0637cb49` (`course_id`), | |
KEY `courseware_studentmodule_grade_adac1ba7` (`grade`), | |
KEY `courseware_studentmodule_created_9976b4ad` (`created`), | |
KEY `courseware_studentmodule_modified_f6a0b0cc` (`modified`), | |
CONSTRAINT `courseware_studentmodule_student_id_c7ed88a0_fk_auth_user_id` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_studentmodule` | |
-- | |
LOCK TABLES `courseware_studentmodule` WRITE; | |
/*!40000 ALTER TABLE `courseware_studentmodule` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_studentmodule` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_studentmodulehistory` | |
-- | |
DROP TABLE IF EXISTS `courseware_studentmodulehistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_studentmodulehistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`version` varchar(255) DEFAULT NULL, | |
`created` datetime(6) NOT NULL, | |
`state` longtext, | |
`grade` double DEFAULT NULL, | |
`max_grade` double DEFAULT NULL, | |
`student_module_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `courseware_studentmo_student_module_id_6efc64cf_fk_coursewar` (`student_module_id`), | |
KEY `courseware_studentmodulehistory_version_d3823ad1` (`version`), | |
KEY `courseware_studentmodulehistory_created_19cb94d2` (`created`), | |
CONSTRAINT `courseware_studentmo_student_module_id_6efc64cf_fk_coursewar` FOREIGN KEY (`student_module_id`) REFERENCES `courseware_studentmodule` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_studentmodulehistory` | |
-- | |
LOCK TABLES `courseware_studentmodulehistory` WRITE; | |
/*!40000 ALTER TABLE `courseware_studentmodulehistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_studentmodulehistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_xmodulestudentinfofield` | |
-- | |
DROP TABLE IF EXISTS `courseware_xmodulestudentinfofield`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_xmodulestudentinfofield` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`field_name` varchar(64) NOT NULL, | |
`value` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`student_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `courseware_xmodulestuden_student_id_field_name_2f3a4ee8_uniq` (`student_id`,`field_name`), | |
KEY `courseware_xmodulestudentinfofield_field_name_191b762e` (`field_name`), | |
KEY `courseware_xmodulestudentinfofield_created_beada63d` (`created`), | |
KEY `courseware_xmodulestudentinfofield_modified_b53f9c88` (`modified`), | |
CONSTRAINT `courseware_xmodulest_student_id_b78d39b4_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_xmodulestudentinfofield` | |
-- | |
LOCK TABLES `courseware_xmodulestudentinfofield` WRITE; | |
/*!40000 ALTER TABLE `courseware_xmodulestudentinfofield` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_xmodulestudentinfofield` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_xmodulestudentprefsfield` | |
-- | |
DROP TABLE IF EXISTS `courseware_xmodulestudentprefsfield`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_xmodulestudentprefsfield` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`field_name` varchar(64) NOT NULL, | |
`value` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`module_type` varchar(64) NOT NULL, | |
`student_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `courseware_xmodulestuden_student_id_module_type_f_1c218850_uniq` (`student_id`,`module_type`,`field_name`), | |
KEY `courseware_xmodulestudentprefsfield_field_name_68d5e66e` (`field_name`), | |
KEY `courseware_xmodulestudentprefsfield_created_16090241` (`created`), | |
KEY `courseware_xmodulestudentprefsfield_modified_5b4e5525` (`modified`), | |
KEY `courseware_xmodulestudentprefsfield_module_type_45b994b9` (`module_type`), | |
CONSTRAINT `courseware_xmodulest_student_id_3c60ec8a_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_xmodulestudentprefsfield` | |
-- | |
LOCK TABLES `courseware_xmodulestudentprefsfield` WRITE; | |
/*!40000 ALTER TABLE `courseware_xmodulestudentprefsfield` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_xmodulestudentprefsfield` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `courseware_xmoduleuserstatesummaryfield` | |
-- | |
DROP TABLE IF EXISTS `courseware_xmoduleuserstatesummaryfield`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `courseware_xmoduleuserstatesummaryfield` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`field_name` varchar(64) NOT NULL, | |
`value` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`usage_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `courseware_xmoduleuserst_usage_id_field_name_e4e34c44_uniq` (`usage_id`,`field_name`), | |
KEY `courseware_xmoduleuserstatesummaryfield_field_name_395cd2a6` (`field_name`), | |
KEY `courseware_xmoduleuserstatesummaryfield_created_57d773a1` (`created`), | |
KEY `courseware_xmoduleuserstatesummaryfield_modified_b4277a5d` (`modified`), | |
KEY `courseware_xmoduleuserstatesummaryfield_usage_id_9f239d1f` (`usage_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `courseware_xmoduleuserstatesummaryfield` | |
-- | |
LOCK TABLES `courseware_xmoduleuserstatesummaryfield` WRITE; | |
/*!40000 ALTER TABLE `courseware_xmoduleuserstatesummaryfield` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `courseware_xmoduleuserstatesummaryfield` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `crawlers_crawlersconfig` | |
-- | |
DROP TABLE IF EXISTS `crawlers_crawlersconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `crawlers_crawlersconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`known_user_agents` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `crawlers_crawlersconfig` | |
-- | |
LOCK TABLES `crawlers_crawlersconfig` WRITE; | |
/*!40000 ALTER TABLE `crawlers_crawlersconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `crawlers_crawlersconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credentials_credentialsapiconfig` | |
-- | |
DROP TABLE IF EXISTS `credentials_credentialsapiconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credentials_credentialsapiconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`internal_service_url` varchar(200) NOT NULL, | |
`public_service_url` varchar(200) NOT NULL, | |
`enable_learner_issuance` tinyint(1) NOT NULL, | |
`enable_studio_authoring` tinyint(1) NOT NULL, | |
`cache_ttl` int(10) unsigned NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `credentials_credenti_changed_by_id_9e145a81_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `credentials_credenti_changed_by_id_9e145a81_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credentials_credentialsapiconfig` | |
-- | |
LOCK TABLES `credentials_credentialsapiconfig` WRITE; | |
/*!40000 ALTER TABLE `credentials_credentialsapiconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credentials_credentialsapiconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credit_creditconfig` | |
-- | |
DROP TABLE IF EXISTS `credit_creditconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credit_creditconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`cache_ttl` int(10) unsigned NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credit_creditconfig` | |
-- | |
LOCK TABLES `credit_creditconfig` WRITE; | |
/*!40000 ALTER TABLE `credit_creditconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credit_creditconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credit_creditcourse` | |
-- | |
DROP TABLE IF EXISTS `credit_creditcourse`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credit_creditcourse` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_key` varchar(255) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_key` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credit_creditcourse` | |
-- | |
LOCK TABLES `credit_creditcourse` WRITE; | |
/*!40000 ALTER TABLE `credit_creditcourse` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credit_creditcourse` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credit_crediteligibility` | |
-- | |
DROP TABLE IF EXISTS `credit_crediteligibility`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credit_crediteligibility` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`username` varchar(255) NOT NULL, | |
`deadline` datetime(6) NOT NULL, | |
`course_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `credit_crediteligibility_username_course_id_7906b4c1_uniq` (`username`,`course_id`), | |
KEY `credit_crediteligibi_course_id_d86f481f_fk_credit_cr` (`course_id`), | |
KEY `credit_crediteligibility_username_4c275fb5` (`username`), | |
CONSTRAINT `credit_crediteligibi_course_id_d86f481f_fk_credit_cr` FOREIGN KEY (`course_id`) REFERENCES `credit_creditcourse` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credit_crediteligibility` | |
-- | |
LOCK TABLES `credit_crediteligibility` WRITE; | |
/*!40000 ALTER TABLE `credit_crediteligibility` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credit_crediteligibility` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credit_creditprovider` | |
-- | |
DROP TABLE IF EXISTS `credit_creditprovider`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credit_creditprovider` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`provider_id` varchar(255) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`display_name` varchar(255) NOT NULL, | |
`enable_integration` tinyint(1) NOT NULL, | |
`provider_url` varchar(200) NOT NULL, | |
`provider_status_url` varchar(200) NOT NULL, | |
`provider_description` longtext NOT NULL, | |
`fulfillment_instructions` longtext, | |
`eligibility_email_message` longtext NOT NULL, | |
`receipt_email_message` longtext NOT NULL, | |
`thumbnail_url` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `provider_id` (`provider_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credit_creditprovider` | |
-- | |
LOCK TABLES `credit_creditprovider` WRITE; | |
/*!40000 ALTER TABLE `credit_creditprovider` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credit_creditprovider` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credit_creditrequest` | |
-- | |
DROP TABLE IF EXISTS `credit_creditrequest`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credit_creditrequest` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` varchar(32) NOT NULL, | |
`username` varchar(255) NOT NULL, | |
`parameters` longtext NOT NULL, | |
`status` varchar(255) NOT NULL, | |
`course_id` int(11) NOT NULL, | |
`provider_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `uuid` (`uuid`), | |
UNIQUE KEY `credit_creditrequest_username_course_id_provi_3b019afe_uniq` (`username`,`course_id`,`provider_id`), | |
KEY `credit_creditrequest_course_id_5478ceaf_fk_credit_cr` (`course_id`), | |
KEY `credit_creditrequest_provider_id_5465ab8b_fk_credit_cr` (`provider_id`), | |
KEY `credit_creditrequest_username_bd5623e4` (`username`), | |
CONSTRAINT `credit_creditrequest_course_id_5478ceaf_fk_credit_cr` FOREIGN KEY (`course_id`) REFERENCES `credit_creditcourse` (`id`), | |
CONSTRAINT `credit_creditrequest_provider_id_5465ab8b_fk_credit_cr` FOREIGN KEY (`provider_id`) REFERENCES `credit_creditprovider` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credit_creditrequest` | |
-- | |
LOCK TABLES `credit_creditrequest` WRITE; | |
/*!40000 ALTER TABLE `credit_creditrequest` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credit_creditrequest` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credit_creditrequirement` | |
-- | |
DROP TABLE IF EXISTS `credit_creditrequirement`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credit_creditrequirement` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`namespace` varchar(255) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`display_name` varchar(255) NOT NULL, | |
`order` int(10) unsigned NOT NULL, | |
`criteria` longtext NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`course_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `credit_creditrequirement_namespace_name_course_id_87c301e6_uniq` (`namespace`,`name`,`course_id`), | |
KEY `credit_creditrequire_course_id_b6aa812a_fk_credit_cr` (`course_id`), | |
CONSTRAINT `credit_creditrequire_course_id_b6aa812a_fk_credit_cr` FOREIGN KEY (`course_id`) REFERENCES `credit_creditcourse` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credit_creditrequirement` | |
-- | |
LOCK TABLES `credit_creditrequirement` WRITE; | |
/*!40000 ALTER TABLE `credit_creditrequirement` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credit_creditrequirement` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `credit_creditrequirementstatus` | |
-- | |
DROP TABLE IF EXISTS `credit_creditrequirementstatus`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `credit_creditrequirementstatus` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`username` varchar(255) NOT NULL, | |
`status` varchar(32) NOT NULL, | |
`reason` longtext NOT NULL, | |
`requirement_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `credit_creditrequirement_username_requirement_id_f761eba5_uniq` (`username`,`requirement_id`), | |
KEY `credit_creditrequire_requirement_id_cde25c76_fk_credit_cr` (`requirement_id`), | |
KEY `credit_creditrequirementstatus_username_4c2511ed` (`username`), | |
CONSTRAINT `credit_creditrequire_requirement_id_cde25c76_fk_credit_cr` FOREIGN KEY (`requirement_id`) REFERENCES `credit_creditrequirement` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `credit_creditrequirementstatus` | |
-- | |
LOCK TABLES `credit_creditrequirementstatus` WRITE; | |
/*!40000 ALTER TABLE `credit_creditrequirementstatus` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `credit_creditrequirementstatus` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `dark_lang_darklangconfig` | |
-- | |
DROP TABLE IF EXISTS `dark_lang_darklangconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `dark_lang_darklangconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`released_languages` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `dark_lang_darklangconfig` | |
-- | |
LOCK TABLES `dark_lang_darklangconfig` WRITE; | |
/*!40000 ALTER TABLE `dark_lang_darklangconfig` DISABLE KEYS */; | |
INSERT INTO `dark_lang_darklangconfig` VALUES (1,'2018-09-11 19:59:22.115142',1,'',NULL); | |
/*!40000 ALTER TABLE `dark_lang_darklangconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `degreed_degreedenterprisecustomerconfiguration` | |
-- | |
DROP TABLE IF EXISTS `degreed_degreedenterprisecustomerconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `degreed_degreedenterprisecustomerconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`secret` varchar(255) NOT NULL, | |
`degreed_company_id` varchar(255) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
`transmission_chunk_size` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), | |
CONSTRAINT `degreed_degreedenter_enterprise_customer__86f16a0d_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `degreed_degreedenterprisecustomerconfiguration` | |
-- | |
LOCK TABLES `degreed_degreedenterprisecustomerconfiguration` WRITE; | |
/*!40000 ALTER TABLE `degreed_degreedenterprisecustomerconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `degreed_degreedenterprisecustomerconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `degreed_degreedglobalconfiguration` | |
-- | |
DROP TABLE IF EXISTS `degreed_degreedglobalconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `degreed_degreedglobalconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`degreed_base_url` varchar(255) NOT NULL, | |
`completion_status_api_path` varchar(255) NOT NULL, | |
`course_api_path` varchar(255) NOT NULL, | |
`oauth_api_path` varchar(255) NOT NULL, | |
`degreed_user_id` varchar(255) NOT NULL, | |
`degreed_user_password` varchar(255) NOT NULL, | |
`provider_id` varchar(100) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `degreed_degreedglobalconfiguration` | |
-- | |
LOCK TABLES `degreed_degreedglobalconfiguration` WRITE; | |
/*!40000 ALTER TABLE `degreed_degreedglobalconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `degreed_degreedglobalconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `degreed_degreedlearnerdatatransmissionaudit` | |
-- | |
DROP TABLE IF EXISTS `degreed_degreedlearnerdatatransmissionaudit`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `degreed_degreedlearnerdatatransmissionaudit` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`degreed_user_email` varchar(255) NOT NULL, | |
`enterprise_course_enrollment_id` int(10) unsigned NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`course_completed` tinyint(1) NOT NULL, | |
`completed_timestamp` varchar(10) NOT NULL, | |
`status` varchar(100) NOT NULL, | |
`error_message` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `degreed_degreedlearnerdatatransmissionaudit` | |
-- | |
LOCK TABLES `degreed_degreedlearnerdatatransmissionaudit` WRITE; | |
/*!40000 ALTER TABLE `degreed_degreedlearnerdatatransmissionaudit` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `degreed_degreedlearnerdatatransmissionaudit` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `degreed_historicaldegreedenterprisecustomerconfiguration` | |
-- | |
DROP TABLE IF EXISTS `degreed_historicaldegreedenterprisecustomerconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `degreed_historicaldegreedenterprisecustomerconfiguration` ( | |
`id` int(11) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`secret` varchar(255) NOT NULL, | |
`degreed_company_id` varchar(255) NOT NULL, | |
`history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`history_date` datetime(6) NOT NULL, | |
`history_change_reason` varchar(100) DEFAULT NULL, | |
`history_type` varchar(1) NOT NULL, | |
`enterprise_customer_id` char(32) DEFAULT NULL, | |
`history_user_id` int(11) DEFAULT NULL, | |
`transmission_chunk_size` int(11) NOT NULL, | |
PRIMARY KEY (`history_id`), | |
KEY `degreed_historicalde_history_user_id_5b4776d8_fk_auth_user` (`history_user_id`), | |
KEY `degreed_historicaldegreeden_id_756f1445` (`id`), | |
KEY `degreed_historicaldegreeden_enterprise_customer_id_12129e6f` (`enterprise_customer_id`), | |
CONSTRAINT `degreed_historicalde_history_user_id_5b4776d8_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `degreed_historicaldegreedenterprisecustomerconfiguration` | |
-- | |
LOCK TABLES `degreed_historicaldegreedenterprisecustomerconfiguration` WRITE; | |
/*!40000 ALTER TABLE `degreed_historicaldegreedenterprisecustomerconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `degreed_historicaldegreedenterprisecustomerconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
CREATE TABLE `django_admin_log` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`action_time` datetime(6) NOT NULL, | |
`object_id` longtext, | |
`object_repr` varchar(200) NOT NULL, | |
`action_flag` smallint(5) unsigned NOT NULL, | |
`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 DEFAULT CHARSET=latin1; | |
/*!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 */; | |
/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_comment_client_permission` | |
-- | |
DROP TABLE IF EXISTS `django_comment_client_permission`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_comment_client_permission` ( | |
`name` varchar(30) NOT NULL, | |
PRIMARY KEY (`name`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_comment_client_permission` | |
-- | |
LOCK TABLES `django_comment_client_permission` WRITE; | |
/*!40000 ALTER TABLE `django_comment_client_permission` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_comment_client_permission` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_comment_client_permission_roles` | |
-- | |
DROP TABLE IF EXISTS `django_comment_client_permission_roles`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_comment_client_permission_roles` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`permission_id` varchar(30) NOT NULL, | |
`role_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `django_comment_client_pe_permission_id_role_id_d3680ec3_uniq` (`permission_id`,`role_id`), | |
KEY `django_comment_clien_role_id_d2cb08a2_fk_django_co` (`role_id`), | |
CONSTRAINT `django_comment_clien_permission_id_f9f47fd2_fk_django_co` FOREIGN KEY (`permission_id`) REFERENCES `django_comment_client_permission` (`name`), | |
CONSTRAINT `django_comment_clien_role_id_d2cb08a2_fk_django_co` FOREIGN KEY (`role_id`) REFERENCES `django_comment_client_role` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_comment_client_permission_roles` | |
-- | |
LOCK TABLES `django_comment_client_permission_roles` WRITE; | |
/*!40000 ALTER TABLE `django_comment_client_permission_roles` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_comment_client_permission_roles` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_comment_client_role` | |
-- | |
DROP TABLE IF EXISTS `django_comment_client_role`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_comment_client_role` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(30) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `django_comment_client_role_course_id_08a9c1d1` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_comment_client_role` | |
-- | |
LOCK TABLES `django_comment_client_role` WRITE; | |
/*!40000 ALTER TABLE `django_comment_client_role` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_comment_client_role` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_comment_client_role_users` | |
-- | |
DROP TABLE IF EXISTS `django_comment_client_role_users`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_comment_client_role_users` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`role_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `django_comment_client_role_users_role_id_user_id_93ab4289_uniq` (`role_id`,`user_id`), | |
KEY `django_comment_clien_user_id_5d7991df_fk_auth_user` (`user_id`), | |
CONSTRAINT `django_comment_clien_role_id_baec77f6_fk_django_co` FOREIGN KEY (`role_id`) REFERENCES `django_comment_client_role` (`id`), | |
CONSTRAINT `django_comment_clien_user_id_5d7991df_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_comment_client_role_users` | |
-- | |
LOCK TABLES `django_comment_client_role_users` WRITE; | |
/*!40000 ALTER TABLE `django_comment_client_role_users` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_comment_client_role_users` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_comment_common_coursediscussionsettings` | |
-- | |
DROP TABLE IF EXISTS `django_comment_common_coursediscussionsettings`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_comment_common_coursediscussionsettings` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`always_divide_inline_discussions` tinyint(1) NOT NULL, | |
`divided_discussions` longtext, | |
`division_scheme` varchar(20) NOT NULL, | |
`discussions_id_map` longtext, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_comment_common_coursediscussionsettings` | |
-- | |
LOCK TABLES `django_comment_common_coursediscussionsettings` WRITE; | |
/*!40000 ALTER TABLE `django_comment_common_coursediscussionsettings` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_comment_common_coursediscussionsettings` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_comment_common_discussionsidmapping` | |
-- | |
DROP TABLE IF EXISTS `django_comment_common_discussionsidmapping`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_comment_common_discussionsidmapping` ( | |
`course_id` varchar(255) NOT NULL, | |
`mapping` longtext NOT NULL, | |
PRIMARY KEY (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_comment_common_discussionsidmapping` | |
-- | |
LOCK TABLES `django_comment_common_discussionsidmapping` WRITE; | |
/*!40000 ALTER TABLE `django_comment_common_discussionsidmapping` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_comment_common_discussionsidmapping` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_comment_common_forumsconfig` | |
-- | |
DROP TABLE IF EXISTS `django_comment_common_forumsconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_comment_common_forumsconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`connection_timeout` double NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `django_comment_commo_changed_by_id_9292e296_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `django_comment_commo_changed_by_id_9292e296_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_comment_common_forumsconfig` | |
-- | |
LOCK TABLES `django_comment_common_forumsconfig` WRITE; | |
/*!40000 ALTER TABLE `django_comment_common_forumsconfig` DISABLE KEYS */; | |
INSERT INTO `django_comment_common_forumsconfig` VALUES (1,'2018-09-11 19:59:27.815450',1,5,NULL); | |
/*!40000 ALTER TABLE `django_comment_common_forumsconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
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=349 DEFAULT CHARSET=latin1; | |
/*!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 */; | |
INSERT INTO `django_content_type` VALUES (142,'admin','logentry'),(269,'api_admin','apiaccessconfig'),(1,'api_admin','apiaccessrequest'),(270,'api_admin','catalog'),(222,'assessment','assessment'),(220,'assessment','assessmentfeedback'),(216,'assessment','assessmentfeedbackoption'),(224,'assessment','assessmentpart'),(217,'assessment','criterion'),(225,'assessment','criterionoption'),(223,'assessment','peerworkflow'),(227,'assessment','peerworkflowitem'),(215,'assessment','rubric'),(221,'assessment','staffworkflow'),(226,'assessment','studenttrainingworkflow'),(218,'assessment','studenttrainingworkflowitem'),(219,'assessment','trainingexample'),(4,'auth','group'),(2,'auth','permission'),(3,'auth','user'),(274,'badges','badgeassertion'),(273,'badges','badgeclass'),(276,'badges','coursecompleteimageconfiguration'),(275,'badges','courseeventbadgesconfiguration'),(245,'block_structure','blockstructureconfiguration'),(244,'block_structure','blockstructuremodel'),(337,'bookmarks','bookmark'),(336,'bookmarks','xblockcache'),(100,'branding','brandingapiconfig'),(101,'branding','brandinginfoconfig'),(97,'bulk_email','bulkemailflag'),(99,'bulk_email','cohorttarget'),(96,'bulk_email','courseauthorization'),(98,'bulk_email','courseemail'),(95,'bulk_email','courseemailtemplate'),(94,'bulk_email','coursemodetarget'),(92,'bulk_email','optout'),(93,'bulk_email','target'),(261,'catalog','catalogintegration'),(279,'celery_utils','chorddata'),(278,'celery_utils','failedtask'),(78,'certificates','certificategenerationconfiguration'),(79,'certificates','certificategenerationcoursesetting'),(75,'certificates','certificategenerationhistory'),(81,'certificates','certificatehtmlviewconfiguration'),(73,'certificates','certificateinvalidation'),(83,'certificates','certificatetemplate'),(80,'certificates','certificatetemplateasset'),(82,'certificates','certificatewhitelist'),(74,'certificates','examplecertificate'),(76,'certificates','examplecertificateset'),(77,'certificates','generatedcertificate'),(247,'commerce','commerceconfiguration'),(339,'completion','blockcompletion'),(313,'consent','datasharingconsent'),(314,'consent','datasharingconsenttextoverrides'),(315,'consent','historicaldatasharingconsent'),(24,'contentserver','cdnuseragentsconfig'),(25,'contentserver','courseassetcachettlconfig'),(341,'contentstore','pushnotificationconfig'),(340,'contentstore','videouploadconfig'),(5,'contenttypes','contenttype'),(246,'cors_csrf','xdomainproxyconfiguration'),(39,'courseware','coursedynamicupgradedeadlineconfiguration'),(45,'courseware','dynamicupgradedeadlineconfiguration'),(38,'courseware','offlinecomputedgrade'),(41,'courseware','offlinecomputedgradelog'),(37,'courseware','orgdynamicupgradedeadlineconfiguration'),(46,'courseware','studentfieldoverride'),(44,'courseware','studentmodule'),(42,'courseware','studentmodulehistory'),(40,'courseware','xmodulestudentinfofield'),(36,'courseware','xmodulestudentprefsfield'),(43,'courseware','xmoduleuserstatesummaryfield'),(198,'course_action_state','coursererunstate'),(342,'course_creators','coursecreator'),(282,'course_goals','coursegoal'),(91,'course_groups','cohortmembership'),(89,'course_groups','coursecohort'),(90,'course_groups','coursecohortssettings'),(87,'course_groups','courseusergroup'),(86,'course_groups','courseusergrouppartitiongroup'),(88,'course_groups','unregisteredlearnercohortassignments'),(176,'course_modes','coursemode'),(177,'course_modes','coursemodeexpirationconfig'),(175,'course_modes','coursemodesarchive'),(240,'course_overviews','courseoverview'),(241,'course_overviews','courseoverviewimageconfig'),(242,'course_overviews','courseoverviewimageset'),(239,'course_overviews','courseoverviewtab'),(243,'course_structures','coursestructure'),(280,'crawlers','crawlersconfig'),(335,'credentials','credentialsapiconfig'),(248,'credit','creditconfig'),(252,'credit','creditcourse'),(253,'credit','crediteligibility'),(254,'credit','creditprovider'),(249,'credit','creditrequest'),(250,'credit','creditrequirement'),(251,'credit','creditrequirementstatus'),(185,'dark_lang','darklangconfig'),(321,'degreed','degreedenterprisecustomerconfiguration'),(318,'degreed','degreedglobalconfiguration'),(319,'degreed','degreedlearnerdatatransmissionaudit'),(320,'degreed','historicaldegreedenterprisecustomerconfiguration'),(144,'django_comment_common','coursediscussionsettings'),(143,'django_comment_common','discussionsidmapping'),(145,'django_comment_common','forumsconfig'),(146,'django_comment_common','permission'),(147,'django_comment_common','role'),(138,'django_notify','notification'),(141,'django_notify','notificationtype'),(140,'django_notify','settings'),(139,'django_notify','subscription'),(104,'django_openid_auth','association'),(105,'django_openid_auth','nonce'),(103,'django_openid_auth','useropenid'),(10,'djcelery','crontabschedule'),(13,'djcelery','intervalschedule'),(15,'djcelery','periodictask'),(16,'djcelery','periodictasks'),(12,'djcelery','taskmeta'),(9,'djcelery','tasksetmeta'),(14,'djcelery','taskstate'),(11,'djcelery','workerstate'),(236,'edxval','coursevideo'),(234,'edxval','encodedvideo'),(238,'edxval','profile'),(231,'edxval','thirdpartytranscriptcredentialsstate'),(235,'edxval','transcriptpreference'),(233,'edxval','video'),(232,'edxval','videoimage'),(237,'edxval','videotranscript'),(110,'edx_oauth2_provider','trustedclient'),(286,'edx_proctoring','proctoredexam'),(288,'edx_proctoring','proctoredexamreviewpolicy'),(289,'edx_proctoring','proctoredexamreviewpolicyhistory'),(287,'edx_proctoring','proctoredexamsoftwaresecurecomment'),(293,'edx_proctoring','proctoredexamsoftwaresecurereview'),(292,'edx_proctoring','proctoredexamsoftwaresecurereviewhistory'),(294,'edx_proctoring','proctoredexamstudentallowance'),(285,'edx_proctoring','proctoredexamstudentallowancehistory'),(290,'edx_proctoring','proctoredexamstudentattempt'),(291,'edx_proctoring','proctoredexamstudentattempthistory'),(277,'email_marketing','emailmarketingconfiguration'),(194,'embargo','country'),(192,'embargo','countryaccessrule'),(193,'embargo','courseaccessrulehistory'),(195,'embargo','embargoedcourse'),(191,'embargo','embargoedstate'),(197,'embargo','ipfilter'),(196,'embargo','restrictedcourse'),(305,'enterprise','enrollmentnotificationemailtemplate'),(302,'enterprise','enterprisecourseenrollment'),(304,'enterprise','enterprisecustomer'),(310,'enterprise','enterprisecustomerbrandingconfiguration'),(301,'enterprise','enterprisecustomercatalog'),(306,'enterprise','enterprisecustomerentitlement'),(311,'enterprise','enterprisecustomeridentityprovider'),(300,'enterprise','enterprisecustomerreportingconfiguration'),(297,'enterprise','enterprisecustomeruser'),(312,'enterprise','historicalenrollmentnotificationemailtemplate'),(307,'enterprise','historicalenterprisecourseenrollment'),(299,'enterprise','historicalenterprisecustomer'),(303,'enterprise','historicalenterprisecustomercatalog'),(308,'enterprise','historicalenterprisecustomerentitlement'),(298,'enterprise','pendingenrollment'),(309,'enterprise','pendingenterprisecustomeruser'),(180,'entitlements','courseentitlement'),(178,'entitlements','courseentitlementpolicy'),(179,'entitlements','courseentitlementsupportdetail'),(283,'experiments','experimentdata'),(284,'experiments','experimentkeyvalue'),(102,'external_auth','externalauthmap'),(333,'grades','computegradessetting'),(328,'grades','coursepersistentgradesflag'),(334,'grades','persistentcoursegrade'),(330,'grades','persistentgradesenabledflag'),(332,'grades','persistentsubsectiongrade'),(331,'grades','persistentsubsectiongradeoverride'),(329,'grades','visibleblocks'),(84,'instructor_task','gradereportsetting'),(85,'instructor_task','instructortask'),(316,'integrated_channel','contentmetadataitemtransmission'),(317,'integrated_channel','learnerdatatransmissionaudit'),(209,'lms_xblock','xblockasidesconfig'),(189,'microsite_configuration','microsite'),(187,'microsite_configuration','micrositehistory'),(186,'microsite_configuration','micrositeorganizationmapping'),(188,'microsite_configuration','micrositetemplate'),(265,'milestones','coursecontentmilestone'),(268,'milestones','coursemilestone'),(267,'milestones','milestone'),(266,'milestones','milestonerelationshiptype'),(264,'milestones','usermilestone'),(201,'mobile_api','appversionconfig'),(200,'mobile_api','ignoremobileavailableflagconfig'),(199,'mobile_api','mobileapiconfig'),(148,'notes','note'),(109,'oauth2','accesstoken'),(106,'oauth2','client'),(107,'oauth2','grant'),(108,'oauth2','refreshtoken'),(114,'oauth2_provider','accesstoken'),(112,'oauth2_provider','application'),(111,'oauth2_provider','grant'),(113,'oauth2_provider','refreshtoken'),(116,'oauth_dispatch','applicationaccess'),(115,'oauth_dispatch','applicationorganization'),(117,'oauth_dispatch','restrictedapplication'),(126,'oauth_provider','consumer'),(125,'oauth_provider','nonce'),(128,'oauth_provider','resource'),(127,'oauth_provider','scope'),(124,'oauth_provider','token'),(295,'organizations','organization'),(296,'organizations','organizationcourse'),(260,'programs','programsapiconfig'),(6,'redirects','redirect'),(190,'rss_proxy','whitelistedrssurl'),(324,'sap_success_factors','sapsuccessfactorsenterprisecustomerconfiguration'),(322,'sap_success_factors','sapsuccessfactorsglobalconfiguration'),(323,'sap_success_factors','sapsuccessfactorslearnerdatatransmissionaudit'),(327,'schedules','schedule'),(325,'schedules','scheduleconfig'),(326,'schedules','scheduleexperience'),(262,'self_paced','selfpacedconfiguration'),(7,'sessions','session'),(167,'shoppingcart','certificateitem'),(173,'shoppingcart','coupon'),(163,'shoppingcart','couponredemption'),(169,'shoppingcart','courseregcodeitem'),(164,'shoppingcart','courseregcodeitemannotation'),(165,'shoppingcart','courseregistrationcode'),(174,'shoppingcart','courseregistrationcodeinvoiceitem'),(158,'shoppingcart','donation'),(160,'shoppingcart','donationconfiguration'),(159,'shoppingcart','invoice'),(162,'shoppingcart','invoicehistory'),(172,'shoppingcart','invoiceitem'),(161,'shoppingcart','invoicetransaction'),(166,'shoppingcart','order'),(157,'shoppingcart','orderitem'),(170,'shoppingcart','paidcourseregistration'),(171,'shoppingcart','paidcourseregistrationannotation'),(168,'shoppingcart','registrationcoderedemption'),(8,'sites','site'),(26,'site_configuration','siteconfiguration'),(27,'site_configuration','siteconfigurationhistory'),(203,'social_django','association'),(206,'social_django','code'),(205,'social_django','nonce'),(202,'social_django','partial'),(204,'social_django','usersocialauth'),(149,'splash','splashconfig'),(22,'static_replace','assetbaseurlconfig'),(23,'static_replace','assetexcludedextensionsconfig'),(21,'status','coursemessage'),(20,'status','globalstatusmessage'),(47,'student','anonymoususerid'),(69,'student','courseaccessrole'),(49,'student','courseenrollment'),(59,'student','courseenrollmentallowed'),(61,'student','courseenrollmentattribute'),(57,'student','dashboardconfiguration'),(62,'student','enrollmentrefundconfiguration'),(51,'student','entranceexamconfiguration'),(65,'student','languageproficiency'),(67,'student','linkedinaddtoprofileconfiguration'),(56,'student','loginfailures'),(53,'student','logoutviewconfiguration'),(48,'student','manualenrollmentaudit'),(54,'student','passwordhistory'),(66,'student','pendingemailchange'),(64,'student','pendingnamechange'),(52,'student','registration'),(68,'student','registrationcookieconfiguration'),(63,'student','sociallink'),(58,'student','userattribute'),(50,'student','userprofile'),(70,'student','usersignupsource'),(60,'student','userstanding'),(55,'student','usertestgroup'),(214,'submissions','score'),(213,'submissions','scoreannotation'),(212,'submissions','scoresummary'),(211,'submissions','studentitem'),(210,'submissions','submission'),(208,'survey','surveyanswer'),(207,'survey','surveyform'),(345,'tagging','tagavailablevalues'),(346,'tagging','tagcategories'),(255,'teams','courseteam'),(256,'teams','courseteammembership'),(338,'theming','sitetheme'),(120,'third_party_auth','ltiproviderconfig'),(118,'third_party_auth','oauth2providerconfig'),(123,'third_party_auth','providerapipermissions'),(122,'third_party_auth','samlconfiguration'),(121,'third_party_auth','samlproviderconfig'),(119,'third_party_auth','samlproviderdata'),(263,'thumbnail','kvstore'),(71,'track','trackinglog'),(154,'user_api','retirementstate'),(150,'user_api','usercoursetag'),(155,'user_api','userorgtag'),(151,'user_api','userpreference'),(152,'user_api','userretirementpartnerreportingstatus'),(156,'user_api','userretirementrequest'),(153,'user_api','userretirementstatus'),(348,'user_tasks','usertaskartifact'),(347,'user_tasks','usertaskstatus'),(72,'util','ratelimitconfiguration'),(272,'verified_track_content','migrateverifiedtrackcohortssetting'),(271,'verified_track_content','verifiedtrackcohortedcourse'),(182,'verify_student','manualverification'),(184,'verify_student','softwaresecurephotoverification'),(181,'verify_student','ssoverification'),(183,'verify_student','verificationdeadline'),(31,'video_config','coursehlsplaybackenabledflag'),(32,'video_config','coursevideotranscriptenabledflag'),(30,'video_config','hlsplaybackenabledflag'),(28,'video_config','transcriptmigrationsetting'),(29,'video_config','videotranscriptenabledflag'),(33,'video_pipeline','coursevideouploadsenabledbydefault'),(34,'video_pipeline','videopipelineintegration'),(35,'video_pipeline','videouploadsenabledbydefault'),(19,'waffle','flag'),(17,'waffle','sample'),(18,'waffle','switch'),(281,'waffle_utils','waffleflagcourseoverridemodel'),(129,'wiki','article'),(134,'wiki','articleforobject'),(133,'wiki','articleplugin'),(132,'wiki','articlerevision'),(137,'wiki','reusableplugin'),(136,'wiki','revisionplugin'),(131,'wiki','revisionpluginrevision'),(135,'wiki','simpleplugin'),(130,'wiki','urlpath'),(228,'workflow','assessmentworkflow'),(230,'workflow','assessmentworkflowcancellation'),(229,'workflow','assessmentworkflowstep'),(344,'xblock_config','courseeditltifieldsenabledflag'),(343,'xblock_config','studioconfig'),(259,'xblock_django','xblockconfiguration'),(258,'xblock_django','xblockstudioconfiguration'),(257,'xblock_django','xblockstudioconfigurationflag'); | |
/*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
CREATE TABLE `django_migrations` ( | |
`id` int(11) 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=454 DEFAULT CHARSET=latin1; | |
/*!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 */; | |
INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2018-09-11 19:58:08.460645'),(2,'auth','0001_initial','2018-09-11 19:58:10.546932'),(3,'admin','0001_initial','2018-09-11 19:58:10.868280'),(4,'admin','0002_logentry_remove_auto_add','2018-09-11 19:58:10.912081'),(5,'sites','0001_initial','2018-09-11 19:58:10.972864'),(6,'contenttypes','0002_remove_content_type_name','2018-09-11 19:58:11.170545'),(7,'api_admin','0001_initial','2018-09-11 19:58:11.545562'),(8,'api_admin','0002_auto_20160325_1604','2018-09-11 19:58:11.613321'),(9,'api_admin','0003_auto_20160404_1618','2018-09-11 19:58:12.542419'),(10,'api_admin','0004_auto_20160412_1506','2018-09-11 19:58:13.157568'),(11,'api_admin','0005_auto_20160414_1232','2018-09-11 19:58:13.291107'),(12,'api_admin','0006_catalog','2018-09-11 19:58:13.325145'),(13,'api_admin','0007_delete_historical_api_records','2018-09-11 19:58:14.124155'),(14,'assessment','0001_initial','2018-09-11 19:58:18.104293'),(15,'assessment','0002_staffworkflow','2018-09-11 19:58:18.380612'),(16,'assessment','0003_expand_course_id','2018-09-11 19:58:18.557285'),(17,'auth','0002_alter_permission_name_max_length','2018-09-11 19:58:18.601636'),(18,'auth','0003_alter_user_email_max_length','2018-09-11 19:58:18.661619'),(19,'auth','0004_alter_user_username_opts','2018-09-11 19:58:18.707623'),(20,'auth','0005_alter_user_last_login_null','2018-09-11 19:58:18.864777'),(21,'auth','0006_require_contenttypes_0002','2018-09-11 19:58:18.878103'),(22,'auth','0007_alter_validators_add_error_messages','2018-09-11 19:58:18.942839'),(23,'auth','0008_alter_user_username_max_length','2018-09-11 19:58:19.050824'),(24,'instructor_task','0001_initial','2018-09-11 19:58:19.323705'),(25,'certificates','0001_initial','2018-09-11 19:58:21.370387'),(26,'certificates','0002_data__certificatehtmlviewconfiguration_data','2018-09-11 19:58:21.491689'),(27,'certificates','0003_data__default_modes','2018-09-11 19:58:21.616123'),(28,'certificates','0004_certificategenerationhistory','2018-09-11 19:58:21.872959'),(29,'certificates','0005_auto_20151208_0801','2018-09-11 19:58:21.987114'),(30,'certificates','0006_certificatetemplateasset_asset_slug','2018-09-11 19:58:22.127631'),(31,'certificates','0007_certificateinvalidation','2018-09-11 19:58:22.385903'),(32,'badges','0001_initial','2018-09-11 19:58:23.159948'),(33,'badges','0002_data__migrate_assertions','2018-09-11 19:58:23.286849'),(34,'badges','0003_schema__add_event_configuration','2018-09-11 19:58:23.618280'),(35,'block_structure','0001_config','2018-09-11 19:58:23.818141'),(36,'block_structure','0002_blockstructuremodel','2018-09-11 19:58:23.895894'),(37,'block_structure','0003_blockstructuremodel_storage','2018-09-11 19:58:23.935955'),(38,'block_structure','0004_blockstructuremodel_usagekeywithrun','2018-09-11 19:58:23.962582'),(39,'bookmarks','0001_initial','2018-09-11 19:58:25.163496'),(40,'branding','0001_initial','2018-09-11 19:58:25.602337'),(41,'course_modes','0001_initial','2018-09-11 19:58:25.849457'),(42,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2018-09-11 19:58:25.974637'),(43,'course_modes','0003_auto_20151113_1443','2018-09-11 19:58:26.071413'),(44,'course_modes','0004_auto_20151113_1457','2018-09-11 19:58:26.420684'),(45,'course_modes','0005_auto_20151217_0958','2018-09-11 19:58:26.508239'),(46,'course_modes','0006_auto_20160208_1407','2018-09-11 19:58:26.640404'),(47,'course_modes','0007_coursemode_bulk_sku','2018-09-11 19:58:26.749629'),(48,'course_groups','0001_initial','2018-09-11 19:58:28.342213'),(49,'bulk_email','0001_initial','2018-09-11 19:58:29.153176'),(50,'bulk_email','0002_data__load_course_email_template','2018-09-11 19:58:29.484077'),(51,'bulk_email','0003_config_model_feature_flag','2018-09-11 19:58:29.671146'),(52,'bulk_email','0004_add_email_targets','2018-09-11 19:58:30.751748'),(53,'bulk_email','0005_move_target_data','2018-09-11 19:58:31.000001'),(54,'bulk_email','0006_course_mode_targets','2018-09-11 19:58:31.391180'),(55,'catalog','0001_initial','2018-09-11 19:58:31.665337'),(56,'catalog','0002_catalogintegration_username','2018-09-11 19:58:31.883699'),(57,'catalog','0003_catalogintegration_page_size','2018-09-11 19:58:32.112445'),(58,'catalog','0004_auto_20170616_0618','2018-09-11 19:58:32.225926'),(59,'catalog','0005_catalogintegration_long_term_cache_ttl','2018-09-11 19:58:32.400518'),(60,'djcelery','0001_initial','2018-09-11 19:58:33.772908'),(61,'celery_utils','0001_initial','2018-09-11 19:58:33.944821'),(62,'celery_utils','0002_chordable_django_backend','2018-09-11 19:58:34.315040'),(63,'certificates','0008_schema__remove_badges','2018-09-11 19:58:34.626717'),(64,'certificates','0009_certificategenerationcoursesetting_language_self_generation','2018-09-11 19:58:35.062740'),(65,'certificates','0010_certificatetemplate_language','2018-09-11 19:58:35.160628'),(66,'certificates','0011_certificatetemplate_alter_unique','2018-09-11 19:58:35.428737'),(67,'certificates','0012_certificategenerationcoursesetting_include_hours_of_effort','2018-09-11 19:58:35.513741'),(68,'certificates','0013_remove_certificategenerationcoursesetting_enabled','2018-09-11 19:58:35.599024'),(69,'certificates','0014_change_eligible_certs_manager','2018-09-11 19:58:35.702350'),(70,'commerce','0001_data__add_ecommerce_service_user','2018-09-11 19:58:36.220214'),(71,'commerce','0002_commerceconfiguration','2018-09-11 19:58:36.445904'),(72,'commerce','0003_auto_20160329_0709','2018-09-11 19:58:36.528793'),(73,'commerce','0004_auto_20160531_0950','2018-09-11 19:58:36.982228'),(74,'commerce','0005_commerceconfiguration_enable_automatic_refund_approval','2018-09-11 19:58:37.152467'),(75,'commerce','0006_auto_20170424_1734','2018-09-11 19:58:37.247312'),(76,'commerce','0007_auto_20180313_0609','2018-09-11 19:58:37.517477'),(77,'completion','0001_initial','2018-09-11 19:58:37.987898'),(78,'completion','0002_auto_20180125_1510','2018-09-11 19:58:38.071200'),(79,'enterprise','0001_initial','2018-09-11 19:58:38.550460'),(80,'enterprise','0002_enterprisecustomerbrandingconfiguration','2018-09-11 19:58:38.687340'),(81,'enterprise','0003_auto_20161104_0937','2018-09-11 19:58:39.347021'),(82,'enterprise','0004_auto_20161114_0434','2018-09-11 19:58:40.170153'),(83,'enterprise','0005_pendingenterprisecustomeruser','2018-09-11 19:58:40.463176'),(84,'enterprise','0006_auto_20161121_0241','2018-09-11 19:58:40.525475'),(85,'enterprise','0007_auto_20161109_1511','2018-09-11 19:58:41.109616'),(86,'enterprise','0008_auto_20161124_2355','2018-09-11 19:58:41.663347'),(87,'enterprise','0009_auto_20161130_1651','2018-09-11 19:58:42.731843'),(88,'enterprise','0010_auto_20161222_1212','2018-09-11 19:58:42.980326'),(89,'enterprise','0011_enterprisecustomerentitlement_historicalenterprisecustomerentitlement','2018-09-11 19:58:43.621041'),(90,'enterprise','0012_auto_20170125_1033','2018-09-11 19:58:43.777633'),(91,'enterprise','0013_auto_20170125_1157','2018-09-11 19:58:44.328735'),(92,'enterprise','0014_enrollmentnotificationemailtemplate_historicalenrollmentnotificationemailtemplate','2018-09-11 19:58:44.927207'),(93,'enterprise','0015_auto_20170130_0003','2018-09-11 19:58:46.471428'),(94,'enterprise','0016_auto_20170405_0647','2018-09-11 19:58:47.824198'),(95,'enterprise','0017_auto_20170508_1341','2018-09-11 19:58:48.524572'),(96,'enterprise','0018_auto_20170511_1357','2018-09-11 19:58:49.370306'),(97,'enterprise','0019_auto_20170606_1853','2018-09-11 19:58:50.195404'),(98,'enterprise','0020_auto_20170624_2316','2018-09-11 19:58:52.751160'),(99,'enterprise','0021_auto_20170711_0712','2018-09-11 19:58:54.880059'),(100,'enterprise','0022_auto_20170720_1543','2018-09-11 19:58:55.343210'),(101,'enterprise','0023_audit_data_reporting_flag','2018-09-11 19:58:55.888988'),(102,'enterprise','0024_enterprisecustomercatalog_historicalenterprisecustomercatalog','2018-09-11 19:58:56.521023'),(103,'enterprise','0025_auto_20170828_1412','2018-09-11 19:58:57.470612'),(104,'enterprise','0026_make_require_account_level_consent_nullable','2018-09-11 19:58:58.191783'),(105,'enterprise','0027_remove_account_level_consent','2018-09-11 19:58:59.601860'),(106,'enterprise','0028_link_enterprise_to_enrollment_template','2018-09-11 19:59:00.457481'),(107,'enterprise','0029_auto_20170925_1909','2018-09-11 19:59:00.706921'),(108,'enterprise','0030_auto_20171005_1600','2018-09-11 19:59:01.170714'),(109,'enterprise','0031_auto_20171012_1249','2018-09-11 19:59:01.525320'),(110,'enterprise','0032_reporting_model','2018-09-11 19:59:01.872373'),(111,'enterprise','0033_add_history_change_reason_field','2018-09-11 19:59:03.295057'),(112,'enterprise','0034_auto_20171023_0727','2018-09-11 19:59:03.593373'),(113,'enterprise','0035_auto_20171212_1129','2018-09-11 19:59:03.895817'),(114,'enterprise','0036_sftp_reporting_support','2018-09-11 19:59:04.477535'),(115,'enterprise','0037_auto_20180110_0450','2018-09-11 19:59:04.645792'),(116,'enterprise','0038_auto_20180122_1427','2018-09-11 19:59:04.911850'),(117,'enterprise','0039_auto_20180129_1034','2018-09-11 19:59:05.140411'),(118,'enterprise','0040_auto_20180129_1428','2018-09-11 19:59:05.430066'),(119,'enterprise','0041_auto_20180212_1507','2018-09-11 19:59:05.660696'),(120,'consent','0001_initial','2018-09-11 19:59:06.856590'),(121,'consent','0002_migrate_to_new_data_sharing_consent','2018-09-11 19:59:07.100724'),(122,'consent','0003_historicaldatasharingconsent_history_change_reason','2018-09-11 19:59:07.326719'),(123,'consent','0004_datasharingconsenttextoverrides','2018-09-11 19:59:07.593143'),(124,'contentserver','0001_initial','2018-09-11 19:59:07.889720'),(125,'contentserver','0002_cdnuseragentsconfig','2018-09-11 19:59:08.205100'),(126,'cors_csrf','0001_initial','2018-09-11 19:59:08.913358'),(127,'course_action_state','0001_initial','2018-09-11 19:59:09.462489'),(128,'course_goals','0001_initial','2018-09-11 19:59:09.894611'),(129,'course_goals','0002_auto_20171010_1129','2018-09-11 19:59:09.992894'),(130,'course_groups','0002_change_inline_default_cohort_value','2018-09-11 19:59:10.057350'),(131,'course_groups','0003_auto_20170609_1455','2018-09-11 19:59:10.347434'),(132,'course_overviews','0001_initial','2018-09-11 19:59:10.553949'),(133,'course_overviews','0002_add_course_catalog_fields','2018-09-11 19:59:10.957559'),(134,'course_overviews','0003_courseoverviewgeneratedhistory','2018-09-11 19:59:11.014376'),(135,'course_overviews','0004_courseoverview_org','2018-09-11 19:59:11.130230'),(136,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2018-09-11 19:59:11.198504'),(137,'course_overviews','0006_courseoverviewimageset','2018-09-11 19:59:11.333687'),(138,'course_overviews','0007_courseoverviewimageconfig','2018-09-11 19:59:11.505443'),(139,'course_overviews','0008_remove_courseoverview_facebook_url','2018-09-11 19:59:11.513956'),(140,'course_overviews','0009_readd_facebook_url','2018-09-11 19:59:11.522471'),(141,'course_overviews','0010_auto_20160329_2317','2018-09-11 19:59:11.689901'),(142,'course_overviews','0011_courseoverview_marketing_url','2018-09-11 19:59:11.787848'),(143,'course_overviews','0012_courseoverview_eligible_for_financial_aid','2018-09-11 19:59:11.891330'),(144,'course_overviews','0013_courseoverview_language','2018-09-11 19:59:11.981186'),(145,'course_modes','0008_course_key_field_to_foreign_key','2018-09-11 19:59:12.215776'),(146,'course_modes','0009_suggested_prices_to_charfield','2018-09-11 19:59:12.284029'),(147,'course_modes','0010_archived_suggested_prices_to_charfield','2018-09-11 19:59:12.319670'),(148,'course_modes','0011_change_regex_for_comma_separated_ints','2018-09-11 19:59:12.385641'),(149,'course_overviews','0014_courseoverview_certificate_available_date','2018-09-11 19:59:12.511695'),(150,'course_structures','0001_initial','2018-09-11 19:59:12.601538'),(151,'courseware','0001_initial','2018-09-11 19:59:15.625514'),(152,'courseware','0002_coursedynamicupgradedeadlineconfiguration_dynamicupgradedeadlineconfiguration','2018-09-11 19:59:16.048551'),(153,'courseware','0003_auto_20170825_0935','2018-09-11 19:59:16.123268'),(154,'courseware','0004_auto_20171010_1639','2018-09-11 19:59:16.190112'),(155,'courseware','0005_orgdynamicupgradedeadlineconfiguration','2018-09-11 19:59:16.428104'),(156,'courseware','0006_remove_module_id_index','2018-09-11 19:59:16.526363'),(157,'courseware','0007_remove_done_index','2018-09-11 19:59:16.616822'),(158,'crawlers','0001_initial','2018-09-11 19:59:16.835968'),(159,'crawlers','0002_auto_20170419_0018','2018-09-11 19:59:16.897939'),(160,'credentials','0001_initial','2018-09-11 19:59:17.349657'),(161,'credentials','0002_auto_20160325_0631','2018-09-11 19:59:17.418052'),(162,'credentials','0003_auto_20170525_1109','2018-09-11 19:59:17.545857'),(163,'credit','0001_initial','2018-09-11 19:59:19.484151'),(164,'credit','0002_creditconfig','2018-09-11 19:59:19.708752'),(165,'credit','0003_auto_20160511_2227','2018-09-11 19:59:19.756720'),(166,'credit','0004_delete_historical_credit_records','2018-09-11 19:59:21.540178'),(167,'dark_lang','0001_initial','2018-09-11 19:59:21.774673'),(168,'dark_lang','0002_data__enable_on_install','2018-09-11 19:59:22.127256'),(169,'database_fixups','0001_initial','2018-09-11 19:59:22.483636'),(170,'degreed','0001_initial','2018-09-11 19:59:24.058785'),(171,'degreed','0002_auto_20180104_0103','2018-09-11 19:59:24.708482'),(172,'degreed','0003_auto_20180109_0712','2018-09-11 19:59:25.544854'),(173,'degreed','0004_auto_20180306_1251','2018-09-11 19:59:25.977401'),(174,'django_comment_common','0001_initial','2018-09-11 19:59:26.974538'),(175,'django_comment_common','0002_forumsconfig','2018-09-11 19:59:27.349698'),(176,'django_comment_common','0003_enable_forums','2018-09-11 19:59:27.833242'),(177,'django_comment_common','0004_auto_20161117_1209','2018-09-11 19:59:28.025070'),(178,'django_comment_common','0005_coursediscussionsettings','2018-09-11 19:59:28.096076'),(179,'django_comment_common','0006_coursediscussionsettings_discussions_id_map','2018-09-11 19:59:28.226499'),(180,'django_comment_common','0007_discussionsidmapping','2018-09-11 19:59:28.283780'),(181,'django_notify','0001_initial','2018-09-11 19:59:29.888245'),(182,'django_openid_auth','0001_initial','2018-09-11 19:59:30.887497'),(183,'oauth2','0001_initial','2018-09-11 19:59:32.944743'),(184,'edx_oauth2_provider','0001_initial','2018-09-11 19:59:33.275341'),(185,'edx_proctoring','0001_initial','2018-09-11 19:59:39.200812'),(186,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2018-09-11 19:59:39.486136'),(187,'edx_proctoring','0003_auto_20160101_0525','2018-09-11 19:59:39.864258'),(188,'edx_proctoring','0004_auto_20160201_0523','2018-09-11 19:59:40.122043'),(189,'edx_proctoring','0005_proctoredexam_hide_after_due','2018-09-11 19:59:40.296268'),(190,'edx_proctoring','0006_allowed_time_limit_mins','2018-09-11 19:59:40.874408'),(191,'edxval','0001_initial','2018-09-11 19:59:42.619201'),(192,'edxval','0002_data__default_profiles','2018-09-11 19:59:43.084256'),(193,'edxval','0003_coursevideo_is_hidden','2018-09-11 19:59:43.216820'),(194,'edxval','0004_data__add_hls_profile','2018-09-11 19:59:43.745283'),(195,'edxval','0005_videoimage','2018-09-11 19:59:43.916083'),(196,'edxval','0006_auto_20171009_0725','2018-09-11 19:59:44.182797'),(197,'edxval','0007_transcript_credentials_state','2018-09-11 19:59:44.316531'),(198,'edxval','0008_remove_subtitles','2018-09-11 19:59:44.576694'),(199,'edxval','0009_auto_20171127_0406','2018-09-11 19:59:44.640358'),(200,'edxval','0010_add_video_as_foreign_key','2018-09-11 19:59:45.144659'),(201,'edxval','0011_data__add_audio_mp3_profile','2018-09-11 19:59:45.715388'),(202,'email_marketing','0001_initial','2018-09-11 19:59:46.112088'),(203,'email_marketing','0002_auto_20160623_1656','2018-09-11 19:59:48.895025'),(204,'email_marketing','0003_auto_20160715_1145','2018-09-11 19:59:49.977665'),(205,'email_marketing','0004_emailmarketingconfiguration_welcome_email_send_delay','2018-09-11 19:59:50.297531'),(206,'email_marketing','0005_emailmarketingconfiguration_user_registration_cookie_timeout_delay','2018-09-11 19:59:50.639550'),(207,'email_marketing','0006_auto_20170711_0615','2018-09-11 19:59:51.507083'),(208,'email_marketing','0007_auto_20170809_0653','2018-09-11 19:59:52.342336'),(209,'email_marketing','0008_auto_20170809_0539','2018-09-11 19:59:52.949964'),(210,'email_marketing','0009_remove_emailmarketingconfiguration_sailthru_activation_template','2018-09-11 19:59:53.261137'),(211,'email_marketing','0010_auto_20180425_0800','2018-09-11 19:59:53.917096'),(212,'embargo','0001_initial','2018-09-11 19:59:55.445259'),(213,'embargo','0002_data__add_countries','2018-09-11 19:59:57.310463'),(214,'enterprise','0042_replace_sensitive_sso_username','2018-09-11 19:59:57.919951'),(215,'enterprise','0043_auto_20180507_0138','2018-09-11 19:59:58.628413'),(216,'enterprise','0044_reporting_config_multiple_types','2018-09-11 19:59:59.291411'),(217,'enterprise','0045_report_type_json','2018-09-11 19:59:59.355612'),(218,'enterprise','0046_remove_unique_constraints','2018-09-11 19:59:59.452445'),(219,'enterprise','0047_auto_20180517_0457','2018-09-11 19:59:59.855716'),(220,'enterprise','0048_enterprisecustomeruser_active','2018-09-11 19:59:59.984765'),(221,'enterprise','0049_auto_20180531_0321','2018-09-11 20:00:00.296305'),(222,'enterprise','0050_progress_v2','2018-09-11 20:00:00.363640'),(223,'enterprise','0051_add_enterprise_slug','2018-09-11 20:00:01.241313'),(224,'enterprise','0052_create_unique_slugs','2018-09-11 20:00:02.104411'),(225,'student','0001_initial','2018-09-11 20:00:12.656436'),(226,'student','0002_auto_20151208_1034','2018-09-11 20:00:12.895720'),(227,'student','0003_auto_20160516_0938','2018-09-11 20:00:13.223989'),(228,'student','0004_auto_20160531_1422','2018-09-11 20:00:13.332434'),(229,'student','0005_auto_20160531_1653','2018-09-11 20:00:13.597729'),(230,'student','0006_logoutviewconfiguration','2018-09-11 20:00:13.846291'),(231,'student','0007_registrationcookieconfiguration','2018-09-11 20:00:14.070685'),(232,'student','0008_auto_20161117_1209','2018-09-11 20:00:14.185664'),(233,'student','0009_auto_20170111_0422','2018-09-11 20:00:14.290784'),(234,'student','0010_auto_20170207_0458','2018-09-11 20:00:14.310312'),(235,'student','0011_course_key_field_to_foreign_key','2018-09-11 20:00:16.601094'),(236,'student','0012_sociallink','2018-09-11 20:00:17.297054'),(237,'student','0013_delete_historical_enrollment_records','2018-09-11 20:00:18.676154'),(238,'entitlements','0001_initial','2018-09-11 20:00:19.245072'),(239,'entitlements','0002_auto_20171102_0719','2018-09-11 20:00:21.108035'),(240,'entitlements','0003_auto_20171205_1431','2018-09-11 20:00:22.759415'),(241,'entitlements','0004_auto_20171206_1729','2018-09-11 20:00:23.123594'),(242,'entitlements','0005_courseentitlementsupportdetail','2018-09-11 20:00:23.818833'),(243,'entitlements','0006_courseentitlementsupportdetail_action','2018-09-11 20:00:24.159415'),(244,'entitlements','0007_change_expiration_period_default','2018-09-11 20:00:24.239627'),(245,'entitlements','0008_auto_20180328_1107','2018-09-11 20:00:25.592269'),(246,'entitlements','0009_courseentitlement_refund_locked','2018-09-11 20:00:26.047058'),(247,'entitlements','0010_backfill_refund_lock','2018-09-11 20:00:26.727733'),(248,'experiments','0001_initial','2018-09-11 20:00:28.035420'),(249,'experiments','0002_auto_20170627_1402','2018-09-11 20:00:28.241434'),(250,'experiments','0003_auto_20170713_1148','2018-09-11 20:00:28.290656'),(251,'external_auth','0001_initial','2018-09-11 20:00:29.196829'),(252,'grades','0001_initial','2018-09-11 20:00:29.616321'),(253,'grades','0002_rename_last_edited_field','2018-09-11 20:00:29.691725'),(254,'grades','0003_coursepersistentgradesflag_persistentgradesenabledflag','2018-09-11 20:00:31.370213'),(255,'grades','0004_visibleblocks_course_id','2018-09-11 20:00:31.529808'),(256,'grades','0005_multiple_course_flags','2018-09-11 20:00:31.901938'),(257,'grades','0006_persistent_course_grades','2018-09-11 20:00:32.119380'),(258,'grades','0007_add_passed_timestamp_column','2018-09-11 20:00:32.324178'),(259,'grades','0008_persistentsubsectiongrade_first_attempted','2018-09-11 20:00:32.480321'),(260,'grades','0009_auto_20170111_1507','2018-09-11 20:00:32.641411'),(261,'grades','0010_auto_20170112_1156','2018-09-11 20:00:32.730813'),(262,'grades','0011_null_edited_time','2018-09-11 20:00:33.102481'),(263,'grades','0012_computegradessetting','2018-09-11 20:00:33.673151'),(264,'grades','0013_persistentsubsectiongradeoverride','2018-09-11 20:00:33.980112'),(265,'instructor_task','0002_gradereportsetting','2018-09-11 20:00:34.405804'),(266,'waffle','0001_initial','2018-09-11 20:00:35.374871'),(267,'sap_success_factors','0001_initial','2018-09-11 20:00:37.660828'),(268,'sap_success_factors','0002_auto_20170224_1545','2018-09-11 20:00:39.231234'),(269,'sap_success_factors','0003_auto_20170317_1402','2018-09-11 20:00:40.375444'),(270,'sap_success_factors','0004_catalogtransmissionaudit_audit_summary','2018-09-11 20:00:40.675359'),(271,'sap_success_factors','0005_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2018-09-11 20:00:41.558267'),(272,'sap_success_factors','0006_sapsuccessfactors_use_enterprise_enrollment_page_waffle_flag','2018-09-11 20:00:42.612870'),(273,'sap_success_factors','0007_remove_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2018-09-11 20:00:42.986913'),(274,'sap_success_factors','0008_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2018-09-11 20:00:43.334697'),(275,'sap_success_factors','0009_sapsuccessfactors_remove_enterprise_enrollment_page_waffle_flag','2018-09-11 20:00:44.130917'),(276,'sap_success_factors','0010_move_audit_tables_to_base_integrated_channel','2018-09-11 20:00:45.110895'),(277,'integrated_channel','0001_initial','2018-09-11 20:00:45.332530'),(278,'integrated_channel','0002_delete_enterpriseintegratedchannel','2018-09-11 20:00:45.388758'),(279,'integrated_channel','0003_catalogtransmissionaudit_learnerdatatransmissionaudit','2018-09-11 20:00:45.523278'),(280,'integrated_channel','0004_catalogtransmissionaudit_channel','2018-09-11 20:00:45.646118'),(281,'integrated_channel','0005_auto_20180306_1251','2018-09-11 20:00:46.673308'),(282,'integrated_channel','0006_delete_catalogtransmissionaudit','2018-09-11 20:00:46.728110'),(283,'lms_xblock','0001_initial','2018-09-11 20:00:47.060111'),(284,'microsite_configuration','0001_initial','2018-09-11 20:00:50.641255'),(285,'microsite_configuration','0002_auto_20160202_0228','2018-09-11 20:00:50.933634'),(286,'microsite_configuration','0003_delete_historical_records','2018-09-11 20:00:52.271530'),(287,'milestones','0001_initial','2018-09-11 20:00:53.925841'),(288,'milestones','0002_data__seed_relationship_types','2018-09-11 20:00:55.102243'),(289,'milestones','0003_coursecontentmilestone_requirements','2018-09-11 20:00:55.260058'),(290,'milestones','0004_auto_20151221_1445','2018-09-11 20:00:55.637952'),(291,'mobile_api','0001_initial','2018-09-11 20:00:56.018499'),(292,'mobile_api','0002_auto_20160406_0904','2018-09-11 20:00:56.163308'),(293,'mobile_api','0003_ignore_mobile_available_flag','2018-09-11 20:00:56.837882'),(294,'notes','0001_initial','2018-09-11 20:00:57.319578'),(295,'oauth2','0002_auto_20160404_0813','2018-09-11 20:00:58.913124'),(296,'oauth2','0003_client_logout_uri','2018-09-11 20:00:59.148345'),(297,'oauth2','0004_add_index_on_grant_expires','2018-09-11 20:00:59.360828'),(298,'oauth2','0005_grant_nonce','2018-09-11 20:00:59.609522'),(299,'oauth2_provider','0001_initial','2018-09-11 20:01:01.373091'),(300,'oauth2_provider','0002_08_updates','2018-09-11 20:01:02.746013'),(301,'oauth2_provider','0003_auto_20160316_1503','2018-09-11 20:01:03.108340'),(302,'oauth2_provider','0004_auto_20160525_1623','2018-09-11 20:01:03.800307'),(303,'organizations','0001_initial','2018-09-11 20:01:04.119074'),(304,'organizations','0002_auto_20170117_1434','2018-09-11 20:01:04.161653'),(305,'organizations','0003_auto_20170221_1138','2018-09-11 20:01:04.292398'),(306,'organizations','0004_auto_20170413_2315','2018-09-11 20:01:04.373771'),(307,'organizations','0005_auto_20171116_0640','2018-09-11 20:01:04.416017'),(308,'organizations','0006_auto_20171207_0259','2018-09-11 20:01:04.462402'),(309,'oauth_dispatch','0001_initial','2018-09-11 20:01:05.274351'),(310,'oauth_dispatch','0002_scopedapplication_scopedapplicationorganization','2018-09-11 20:01:05.890007'),(311,'oauth_dispatch','0003_application_data','2018-09-11 20:01:06.256229'),(312,'oauth_dispatch','0004_auto_20180626_1349','2018-09-11 20:01:08.406530'),(313,'oauth_dispatch','0005_applicationaccess_type','2018-09-11 20:01:08.551407'),(314,'oauth_provider','0001_initial','2018-09-11 20:01:09.204286'),(315,'programs','0001_initial','2018-09-11 20:01:09.375395'),(316,'programs','0002_programsapiconfig_cache_ttl','2018-09-11 20:01:09.527434'),(317,'programs','0003_auto_20151120_1613','2018-09-11 20:01:09.964313'),(318,'programs','0004_programsapiconfig_enable_certification','2018-09-11 20:01:10.077533'),(319,'programs','0005_programsapiconfig_max_retries','2018-09-11 20:01:10.195050'),(320,'programs','0006_programsapiconfig_xseries_ad_enabled','2018-09-11 20:01:10.507369'),(321,'programs','0007_programsapiconfig_program_listing_enabled','2018-09-11 20:01:10.630170'),(322,'programs','0008_programsapiconfig_program_details_enabled','2018-09-11 20:01:10.753782'),(323,'programs','0009_programsapiconfig_marketing_path','2018-09-11 20:01:10.867627'),(324,'programs','0010_auto_20170204_2332','2018-09-11 20:01:11.014369'),(325,'programs','0011_auto_20170301_1844','2018-09-11 20:01:12.899438'),(326,'programs','0012_auto_20170419_0018','2018-09-11 20:01:12.967188'),(327,'redirects','0001_initial','2018-09-11 20:01:13.339818'),(328,'rss_proxy','0001_initial','2018-09-11 20:01:13.430594'),(329,'sap_success_factors','0011_auto_20180104_0103','2018-09-11 20:01:16.738283'),(330,'sap_success_factors','0012_auto_20180109_0712','2018-09-11 20:01:17.104286'),(331,'sap_success_factors','0013_auto_20180306_1251','2018-09-11 20:01:17.624390'),(332,'sap_success_factors','0014_drop_historical_table','2018-09-11 20:01:18.851777'),(333,'sap_success_factors','0015_auto_20180510_1259','2018-09-11 20:01:19.946060'),(334,'sap_success_factors','0016_sapsuccessfactorsenterprisecustomerconfiguration_additional_locales','2018-09-11 20:01:20.112487'),(335,'schedules','0001_initial','2018-09-11 20:01:20.629324'),(336,'schedules','0002_auto_20170816_1532','2018-09-11 20:01:20.914269'),(337,'schedules','0003_scheduleconfig','2018-09-11 20:01:21.884911'),(338,'schedules','0004_auto_20170922_1428','2018-09-11 20:01:22.975871'),(339,'schedules','0005_auto_20171010_1722','2018-09-11 20:01:24.069725'),(340,'schedules','0006_scheduleexperience','2018-09-11 20:01:25.518122'),(341,'schedules','0007_scheduleconfig_hold_back_ratio','2018-09-11 20:01:25.861009'),(342,'self_paced','0001_initial','2018-09-11 20:01:26.280821'),(343,'sessions','0001_initial','2018-09-11 20:01:26.379257'),(344,'shoppingcart','0001_initial','2018-09-11 20:01:37.924338'),(345,'shoppingcart','0002_auto_20151208_1034','2018-09-11 20:01:38.131446'),(346,'shoppingcart','0003_auto_20151217_0958','2018-09-11 20:01:38.333779'),(347,'shoppingcart','0004_change_meta_options','2018-09-11 20:01:38.516749'),(348,'site_configuration','0001_initial','2018-09-11 20:01:40.088444'),(349,'site_configuration','0002_auto_20160720_0231','2018-09-11 20:01:40.346683'),(350,'sites','0002_alter_domain_unique','2018-09-11 20:01:40.431314'),(351,'default','0001_initial','2018-09-11 20:01:41.432056'),(352,'social_auth','0001_initial','2018-09-11 20:01:41.441614'),(353,'default','0002_add_related_name','2018-09-11 20:01:41.787786'),(354,'social_auth','0002_add_related_name','2018-09-11 20:01:41.799149'),(355,'default','0003_alter_email_max_length','2018-09-11 20:01:41.876832'),(356,'social_auth','0003_alter_email_max_length','2018-09-11 20:01:41.887116'),(357,'default','0004_auto_20160423_0400','2018-09-11 20:01:42.158249'),(358,'social_auth','0004_auto_20160423_0400','2018-09-11 20:01:42.171938'),(359,'social_auth','0005_auto_20160727_2333','2018-09-11 20:01:42.260799'),(360,'social_django','0006_partial','2018-09-11 20:01:42.367624'),(361,'social_django','0007_code_timestamp','2018-09-11 20:01:42.506012'),(362,'social_django','0008_partial_timestamp','2018-09-11 20:01:42.647850'),(363,'splash','0001_initial','2018-09-11 20:01:43.682159'),(364,'static_replace','0001_initial','2018-09-11 20:01:44.079826'),(365,'static_replace','0002_assetexcludedextensionsconfig','2018-09-11 20:01:44.643833'),(366,'status','0001_initial','2018-09-11 20:01:45.682999'),(367,'status','0002_update_help_text','2018-09-11 20:01:46.038991'),(368,'student','0014_courseenrollmentallowed_user','2018-09-11 20:01:46.667770'),(369,'student','0015_manualenrollmentaudit_add_role','2018-09-11 20:01:47.103623'),(370,'student','0016_coursenrollment_course_on_delete_do_nothing','2018-09-11 20:01:47.530732'),(371,'submissions','0001_initial','2018-09-11 20:01:49.619414'),(372,'submissions','0002_auto_20151119_0913','2018-09-11 20:01:49.941209'),(373,'submissions','0003_submission_status','2018-09-11 20:01:50.094148'),(374,'submissions','0004_remove_django_extensions','2018-09-11 20:01:50.199811'),(375,'survey','0001_initial','2018-09-11 20:01:51.202398'),(376,'teams','0001_initial','2018-09-11 20:01:53.203565'),(377,'theming','0001_initial','2018-09-11 20:01:53.862435'),(378,'third_party_auth','0001_initial','2018-09-11 20:01:57.371936'),(379,'third_party_auth','0002_schema__provider_icon_image','2018-09-11 20:02:00.100032'),(380,'third_party_auth','0003_samlproviderconfig_debug_mode','2018-09-11 20:02:00.418114'),(381,'third_party_auth','0004_add_visible_field','2018-09-11 20:02:02.700089'),(382,'third_party_auth','0005_add_site_field','2018-09-11 20:02:06.292546'),(383,'third_party_auth','0006_samlproviderconfig_automatic_refresh_enabled','2018-09-11 20:02:06.778472'),(384,'third_party_auth','0007_auto_20170406_0912','2018-09-11 20:02:07.681390'),(385,'third_party_auth','0008_auto_20170413_1455','2018-09-11 20:02:09.381824'),(386,'third_party_auth','0009_auto_20170415_1144','2018-09-11 20:02:10.959460'),(387,'third_party_auth','0010_add_skip_hinted_login_dialog_field','2018-09-11 20:02:12.282704'),(388,'third_party_auth','0011_auto_20170616_0112','2018-09-11 20:02:13.411701'),(389,'third_party_auth','0012_auto_20170626_1135','2018-09-11 20:02:14.394688'),(390,'third_party_auth','0013_sync_learner_profile_data','2018-09-11 20:02:15.972876'),(391,'third_party_auth','0014_auto_20171222_1233','2018-09-11 20:02:17.635112'),(392,'third_party_auth','0015_samlproviderconfig_archived','2018-09-11 20:02:18.806752'),(393,'third_party_auth','0016_auto_20180130_0938','2018-09-11 20:02:19.542095'),(394,'third_party_auth','0017_remove_icon_class_image_secondary_fields','2018-09-11 20:02:20.482857'),(395,'third_party_auth','0018_auto_20180327_1631','2018-09-11 20:02:21.981346'),(396,'third_party_auth','0019_consolidate_slug','2018-09-11 20:02:25.919648'),(397,'third_party_auth','0020_cleanup_slug_fields','2018-09-11 20:02:27.438842'),(398,'third_party_auth','0021_sso_id_verification','2018-09-11 20:02:29.700635'),(399,'track','0001_initial','2018-09-11 20:02:29.815234'),(400,'user_api','0001_initial','2018-09-11 20:02:33.409783'),(401,'user_api','0002_retirementstate_userretirementstatus','2018-09-11 20:02:34.434104'),(402,'user_api','0003_userretirementrequest','2018-09-11 20:02:35.158296'),(403,'user_api','0004_userretirementpartnerreportingstatus','2018-09-11 20:02:35.842287'),(404,'util','0001_initial','2018-09-11 20:02:37.268803'),(405,'util','0002_data__default_rate_limit_config','2018-09-11 20:02:38.095245'),(406,'verified_track_content','0001_initial','2018-09-11 20:02:38.194408'),(407,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2018-09-11 20:02:38.328475'),(408,'verified_track_content','0003_migrateverifiedtrackcohortssetting','2018-09-11 20:02:39.009256'),(409,'verify_student','0001_initial','2018-09-11 20:02:45.406953'),(410,'verify_student','0002_auto_20151124_1024','2018-09-11 20:02:45.755106'),(411,'verify_student','0003_auto_20151113_1443','2018-09-11 20:02:45.939353'),(412,'verify_student','0004_delete_historical_records','2018-09-11 20:02:46.152375'),(413,'verify_student','0005_remove_deprecated_models','2018-09-11 20:02:50.413016'),(414,'verify_student','0006_ssoverification','2018-09-11 20:02:50.729187'),(415,'verify_student','0007_idverificationaggregate','2018-09-11 20:02:51.098182'),(416,'verify_student','0008_populate_idverificationaggregate','2018-09-11 20:02:51.923563'),(417,'verify_student','0009_remove_id_verification_aggregate','2018-09-11 20:02:52.983683'),(418,'verify_student','0010_manualverification','2018-09-11 20:02:53.203054'),(419,'video_config','0001_initial','2018-09-11 20:02:53.653941'),(420,'video_config','0002_coursevideotranscriptenabledflag_videotranscriptenabledflag','2018-09-11 20:02:54.052898'),(421,'video_config','0003_transcriptmigrationsetting','2018-09-11 20:02:54.255209'),(422,'video_config','0004_transcriptmigrationsetting_command_run','2018-09-11 20:02:54.407839'),(423,'video_pipeline','0001_initial','2018-09-11 20:02:54.617703'),(424,'video_pipeline','0002_auto_20171114_0704','2018-09-11 20:02:54.926195'),(425,'video_pipeline','0003_coursevideouploadsenabledbydefault_videouploadsenabledbydefault','2018-09-11 20:02:55.366569'),(426,'waffle','0002_auto_20161201_0958','2018-09-11 20:02:55.434117'),(427,'waffle_utils','0001_initial','2018-09-11 20:02:55.720057'),(428,'wiki','0001_initial','2018-09-11 20:03:13.770924'),(429,'wiki','0002_remove_article_subscription','2018-09-11 20:03:15.207255'),(430,'wiki','0003_ip_address_conv','2018-09-11 20:03:18.947420'),(431,'wiki','0004_increase_slug_size','2018-09-11 20:03:19.234986'),(432,'wiki','0005_remove_attachments_and_images','2018-09-11 20:03:26.169994'),(433,'workflow','0001_initial','2018-09-11 20:03:26.911821'),(434,'workflow','0002_remove_django_extensions','2018-09-11 20:03:27.035395'),(435,'xblock_django','0001_initial','2018-09-11 20:03:27.954501'),(436,'xblock_django','0002_auto_20160204_0809','2018-09-11 20:03:28.671195'),(437,'xblock_django','0003_add_new_config_models','2018-09-11 20:03:31.451851'),(438,'xblock_django','0004_delete_xblock_disable_config','2018-09-11 20:03:33.720945'),(439,'social_django','0002_add_related_name','2018-09-11 20:03:33.754357'),(440,'social_django','0003_alter_email_max_length','2018-09-11 20:03:33.769753'),(441,'social_django','0004_auto_20160423_0400','2018-09-11 20:03:33.789947'),(442,'social_django','0001_initial','2018-09-11 20:03:33.811303'),(443,'social_django','0005_auto_20160727_2333','2018-09-11 20:03:33.832278'),(444,'contentstore','0001_initial','2018-09-11 20:03:57.577446'),(445,'contentstore','0002_add_assets_page_flag','2018-09-11 20:03:58.570047'),(446,'contentstore','0003_remove_assets_page_flag','2018-09-11 20:03:59.958336'),(447,'course_creators','0001_initial','2018-09-11 20:04:00.440022'),(448,'tagging','0001_initial','2018-09-11 20:04:00.909167'),(449,'tagging','0002_auto_20170116_1541','2018-09-11 20:04:01.027048'),(450,'user_tasks','0001_initial','2018-09-11 20:04:02.505081'),(451,'user_tasks','0002_artifact_file_storage','2018-09-11 20:04:02.566754'),(452,'xblock_config','0001_initial','2018-09-11 20:04:02.841614'),(453,'xblock_config','0002_courseeditltifieldsenabledflag','2018-09-11 20:04:03.181918'); | |
/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_openid_auth_association` | |
-- | |
DROP TABLE IF EXISTS `django_openid_auth_association`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_openid_auth_association` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`server_url` longtext NOT NULL, | |
`handle` varchar(255) NOT NULL, | |
`secret` longtext NOT NULL, | |
`issued` int(11) NOT NULL, | |
`lifetime` int(11) NOT NULL, | |
`assoc_type` longtext NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_openid_auth_association` | |
-- | |
LOCK TABLES `django_openid_auth_association` WRITE; | |
/*!40000 ALTER TABLE `django_openid_auth_association` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_openid_auth_association` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_openid_auth_nonce` | |
-- | |
DROP TABLE IF EXISTS `django_openid_auth_nonce`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_openid_auth_nonce` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`server_url` varchar(2047) NOT NULL, | |
`timestamp` int(11) NOT NULL, | |
`salt` varchar(40) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_openid_auth_nonce` | |
-- | |
LOCK TABLES `django_openid_auth_nonce` WRITE; | |
/*!40000 ALTER TABLE `django_openid_auth_nonce` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_openid_auth_nonce` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_openid_auth_useropenid` | |
-- | |
DROP TABLE IF EXISTS `django_openid_auth_useropenid`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_openid_auth_useropenid` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`claimed_id` longtext NOT NULL, | |
`display_id` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `django_openid_auth_useropenid_user_id_707d846c_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `django_openid_auth_useropenid_user_id_707d846c_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_openid_auth_useropenid` | |
-- | |
LOCK TABLES `django_openid_auth_useropenid` WRITE; | |
/*!40000 ALTER TABLE `django_openid_auth_useropenid` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_openid_auth_useropenid` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_redirect` | |
-- | |
DROP TABLE IF EXISTS `django_redirect`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_redirect` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`site_id` int(11) NOT NULL, | |
`old_path` varchar(200) NOT NULL, | |
`new_path` varchar(200) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `django_redirect_site_id_old_path_ac5dd16b_uniq` (`site_id`,`old_path`), | |
KEY `django_redirect_old_path_c6cc94d3` (`old_path`), | |
CONSTRAINT `django_redirect_site_id_c3e37341_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_redirect` | |
-- | |
LOCK TABLES `django_redirect` WRITE; | |
/*!40000 ALTER TABLE `django_redirect` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `django_redirect` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- 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 = utf8 */; | |
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=latin1; | |
/*!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 */; | |
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `django_site` | |
-- | |
DROP TABLE IF EXISTS `django_site`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `django_site` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`domain` varchar(100) NOT NULL, | |
`name` varchar(50) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `django_site_domain_a2e37b91_uniq` (`domain`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `django_site` | |
-- | |
LOCK TABLES `django_site` WRITE; | |
/*!40000 ALTER TABLE `django_site` DISABLE KEYS */; | |
INSERT INTO `django_site` VALUES (1,'example.com','example.com'); | |
/*!40000 ALTER TABLE `django_site` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `djcelery_crontabschedule` | |
-- | |
DROP TABLE IF EXISTS `djcelery_crontabschedule`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `djcelery_crontabschedule` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`minute` varchar(64) NOT NULL, | |
`hour` varchar(64) NOT NULL, | |
`day_of_week` varchar(64) NOT NULL, | |
`day_of_month` varchar(64) NOT NULL, | |
`month_of_year` varchar(64) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `djcelery_crontabschedule` | |
-- | |
LOCK TABLES `djcelery_crontabschedule` WRITE; | |
/*!40000 ALTER TABLE `djcelery_crontabschedule` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `djcelery_crontabschedule` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `djcelery_intervalschedule` | |
-- | |
DROP TABLE IF EXISTS `djcelery_intervalschedule`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `djcelery_intervalschedule` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`every` int(11) NOT NULL, | |
`period` varchar(24) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `djcelery_intervalschedule` | |
-- | |
LOCK TABLES `djcelery_intervalschedule` WRITE; | |
/*!40000 ALTER TABLE `djcelery_intervalschedule` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `djcelery_intervalschedule` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `djcelery_periodictask` | |
-- | |
DROP TABLE IF EXISTS `djcelery_periodictask`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `djcelery_periodictask` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(200) NOT NULL, | |
`task` varchar(200) NOT NULL, | |
`args` longtext NOT NULL, | |
`kwargs` longtext NOT NULL, | |
`queue` varchar(200) DEFAULT NULL, | |
`exchange` varchar(200) DEFAULT NULL, | |
`routing_key` varchar(200) DEFAULT NULL, | |
`expires` datetime(6) DEFAULT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`last_run_at` datetime(6) DEFAULT NULL, | |
`total_run_count` int(10) unsigned NOT NULL, | |
`date_changed` datetime(6) NOT NULL, | |
`description` longtext NOT NULL, | |
`crontab_id` int(11) DEFAULT NULL, | |
`interval_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`), | |
KEY `djcelery_periodictas_crontab_id_75609bab_fk_djcelery_` (`crontab_id`), | |
KEY `djcelery_periodictas_interval_id_b426ab02_fk_djcelery_` (`interval_id`), | |
CONSTRAINT `djcelery_periodictas_crontab_id_75609bab_fk_djcelery_` FOREIGN KEY (`crontab_id`) REFERENCES `djcelery_crontabschedule` (`id`), | |
CONSTRAINT `djcelery_periodictas_interval_id_b426ab02_fk_djcelery_` FOREIGN KEY (`interval_id`) REFERENCES `djcelery_intervalschedule` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `djcelery_periodictask` | |
-- | |
LOCK TABLES `djcelery_periodictask` WRITE; | |
/*!40000 ALTER TABLE `djcelery_periodictask` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `djcelery_periodictask` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `djcelery_periodictasks` | |
-- | |
DROP TABLE IF EXISTS `djcelery_periodictasks`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `djcelery_periodictasks` ( | |
`ident` smallint(6) NOT NULL, | |
`last_update` datetime(6) NOT NULL, | |
PRIMARY KEY (`ident`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `djcelery_periodictasks` | |
-- | |
LOCK TABLES `djcelery_periodictasks` WRITE; | |
/*!40000 ALTER TABLE `djcelery_periodictasks` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `djcelery_periodictasks` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `djcelery_taskstate` | |
-- | |
DROP TABLE IF EXISTS `djcelery_taskstate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `djcelery_taskstate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`state` varchar(64) NOT NULL, | |
`task_id` varchar(36) NOT NULL, | |
`name` varchar(200) DEFAULT NULL, | |
`tstamp` datetime(6) NOT NULL, | |
`args` longtext, | |
`kwargs` longtext, | |
`eta` datetime(6) DEFAULT NULL, | |
`expires` datetime(6) DEFAULT NULL, | |
`result` longtext, | |
`traceback` longtext, | |
`runtime` double DEFAULT NULL, | |
`retries` int(11) NOT NULL, | |
`hidden` tinyint(1) NOT NULL, | |
`worker_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `task_id` (`task_id`), | |
KEY `djcelery_taskstate_state_53543be4` (`state`), | |
KEY `djcelery_taskstate_name_8af9eded` (`name`), | |
KEY `djcelery_taskstate_tstamp_4c3f93a1` (`tstamp`), | |
KEY `djcelery_taskstate_hidden_c3905e57` (`hidden`), | |
KEY `djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id` (`worker_id`), | |
CONSTRAINT `djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id` FOREIGN KEY (`worker_id`) REFERENCES `djcelery_workerstate` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `djcelery_taskstate` | |
-- | |
LOCK TABLES `djcelery_taskstate` WRITE; | |
/*!40000 ALTER TABLE `djcelery_taskstate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `djcelery_taskstate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `djcelery_workerstate` | |
-- | |
DROP TABLE IF EXISTS `djcelery_workerstate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `djcelery_workerstate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`hostname` varchar(255) NOT NULL, | |
`last_heartbeat` datetime(6) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `hostname` (`hostname`), | |
KEY `djcelery_workerstate_last_heartbeat_4539b544` (`last_heartbeat`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `djcelery_workerstate` | |
-- | |
LOCK TABLES `djcelery_workerstate` WRITE; | |
/*!40000 ALTER TABLE `djcelery_workerstate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `djcelery_workerstate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_coursevideo` | |
-- | |
DROP TABLE IF EXISTS `edxval_coursevideo`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_coursevideo` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`video_id` int(11) NOT NULL, | |
`is_hidden` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `edxval_coursevideo_course_id_video_id_ebd82f35_uniq` (`course_id`,`video_id`), | |
KEY `edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id` (`video_id`), | |
CONSTRAINT `edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id` FOREIGN KEY (`video_id`) REFERENCES `edxval_video` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_coursevideo` | |
-- | |
LOCK TABLES `edxval_coursevideo` WRITE; | |
/*!40000 ALTER TABLE `edxval_coursevideo` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `edxval_coursevideo` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_encodedvideo` | |
-- | |
DROP TABLE IF EXISTS `edxval_encodedvideo`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_encodedvideo` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`url` varchar(200) NOT NULL, | |
`file_size` int(10) unsigned NOT NULL, | |
`bitrate` int(10) unsigned NOT NULL, | |
`profile_id` int(11) NOT NULL, | |
`video_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id` (`profile_id`), | |
KEY `edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id` (`video_id`), | |
CONSTRAINT `edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id` FOREIGN KEY (`profile_id`) REFERENCES `edxval_profile` (`id`), | |
CONSTRAINT `edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id` FOREIGN KEY (`video_id`) REFERENCES `edxval_video` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_encodedvideo` | |
-- | |
LOCK TABLES `edxval_encodedvideo` WRITE; | |
/*!40000 ALTER TABLE `edxval_encodedvideo` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `edxval_encodedvideo` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_profile` | |
-- | |
DROP TABLE IF EXISTS `edxval_profile`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_profile` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`profile_name` varchar(50) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `profile_name` (`profile_name`) | |
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_profile` | |
-- | |
LOCK TABLES `edxval_profile` WRITE; | |
/*!40000 ALTER TABLE `edxval_profile` DISABLE KEYS */; | |
INSERT INTO `edxval_profile` VALUES (7,'audio_mp3'),(1,'desktop_mp4'),(2,'desktop_webm'),(6,'hls'),(3,'mobile_high'),(4,'mobile_low'),(5,'youtube'); | |
/*!40000 ALTER TABLE `edxval_profile` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_thirdpartytranscriptcredentialsstate` | |
-- | |
DROP TABLE IF EXISTS `edxval_thirdpartytranscriptcredentialsstate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_thirdpartytranscriptcredentialsstate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`org` varchar(32) NOT NULL, | |
`provider` varchar(20) NOT NULL, | |
`exists` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `edxval_thirdpartytranscr_org_provider_188f7ddf_uniq` (`org`,`provider`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_thirdpartytranscriptcredentialsstate` | |
-- | |
LOCK TABLES `edxval_thirdpartytranscriptcredentialsstate` WRITE; | |
/*!40000 ALTER TABLE `edxval_thirdpartytranscriptcredentialsstate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `edxval_thirdpartytranscriptcredentialsstate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_transcriptpreference` | |
-- | |
DROP TABLE IF EXISTS `edxval_transcriptpreference`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_transcriptpreference` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`provider` varchar(20) NOT NULL, | |
`cielo24_fidelity` varchar(20) DEFAULT NULL, | |
`cielo24_turnaround` varchar(20) DEFAULT NULL, | |
`three_play_turnaround` varchar(20) DEFAULT NULL, | |
`preferred_languages` longtext NOT NULL, | |
`video_source_language` varchar(50) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_transcriptpreference` | |
-- | |
LOCK TABLES `edxval_transcriptpreference` WRITE; | |
/*!40000 ALTER TABLE `edxval_transcriptpreference` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `edxval_transcriptpreference` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_video` | |
-- | |
DROP TABLE IF EXISTS `edxval_video`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_video` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`edx_video_id` varchar(100) NOT NULL, | |
`client_video_id` varchar(255) NOT NULL, | |
`duration` double NOT NULL, | |
`status` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `edx_video_id` (`edx_video_id`), | |
KEY `edxval_video_client_video_id_2b668312` (`client_video_id`), | |
KEY `edxval_video_status_5f33a104` (`status`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_video` | |
-- | |
LOCK TABLES `edxval_video` WRITE; | |
/*!40000 ALTER TABLE `edxval_video` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `edxval_video` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_videoimage` | |
-- | |
DROP TABLE IF EXISTS `edxval_videoimage`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_videoimage` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`image` varchar(500) DEFAULT NULL, | |
`generated_images` longtext NOT NULL, | |
`course_video_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_video_id` (`course_video_id`), | |
CONSTRAINT `edxval_videoimage_course_video_id_06855d34_fk_edxval_co` FOREIGN KEY (`course_video_id`) REFERENCES `edxval_coursevideo` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_videoimage` | |
-- | |
LOCK TABLES `edxval_videoimage` WRITE; | |
/*!40000 ALTER TABLE `edxval_videoimage` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `edxval_videoimage` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `edxval_videotranscript` | |
-- | |
DROP TABLE IF EXISTS `edxval_videotranscript`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `edxval_videotranscript` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`transcript` varchar(255) DEFAULT NULL, | |
`language_code` varchar(50) NOT NULL, | |
`provider` varchar(30) NOT NULL, | |
`file_format` varchar(20) NOT NULL, | |
`video_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `edxval_videotranscript_video_id_language_code_37532906_uniq` (`video_id`,`language_code`), | |
KEY `edxval_videotranscript_language_code_d78ce3d1` (`language_code`), | |
KEY `edxval_videotranscript_file_format_3adddaf7` (`file_format`), | |
CONSTRAINT `edxval_videotranscript_video_id_6ffdfb56_fk_edxval_video_id` FOREIGN KEY (`video_id`) REFERENCES `edxval_video` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `edxval_videotranscript` | |
-- | |
LOCK TABLES `edxval_videotranscript` WRITE; | |
/*!40000 ALTER TABLE `edxval_videotranscript` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `edxval_videotranscript` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `email_marketing_emailmarketingconfiguration` | |
-- | |
DROP TABLE IF EXISTS `email_marketing_emailmarketingconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `email_marketing_emailmarketingconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`sailthru_key` varchar(32) NOT NULL, | |
`sailthru_secret` varchar(32) NOT NULL, | |
`sailthru_new_user_list` varchar(48) NOT NULL, | |
`sailthru_retry_interval` int(11) NOT NULL, | |
`sailthru_max_retries` int(11) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`sailthru_abandoned_cart_delay` int(11) NOT NULL, | |
`sailthru_abandoned_cart_template` varchar(20) NOT NULL, | |
`sailthru_content_cache_age` int(11) NOT NULL, | |
`sailthru_enroll_cost` int(11) NOT NULL, | |
`sailthru_enroll_template` varchar(20) NOT NULL, | |
`sailthru_get_tags_from_sailthru` tinyint(1) NOT NULL, | |
`sailthru_purchase_template` varchar(20) NOT NULL, | |
`sailthru_upgrade_template` varchar(20) NOT NULL, | |
`sailthru_lms_url_override` varchar(80) NOT NULL, | |
`welcome_email_send_delay` int(11) NOT NULL, | |
`user_registration_cookie_timeout_delay` double NOT NULL, | |
`sailthru_welcome_template` varchar(20) NOT NULL, | |
`sailthru_verification_failed_template` varchar(20) NOT NULL, | |
`sailthru_verification_passed_template` varchar(20) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `email_marketing_emai_changed_by_id_15ce753b_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `email_marketing_emai_changed_by_id_15ce753b_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `email_marketing_emailmarketingconfiguration` | |
-- | |
LOCK TABLES `email_marketing_emailmarketingconfiguration` WRITE; | |
/*!40000 ALTER TABLE `email_marketing_emailmarketingconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `email_marketing_emailmarketingconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `embargo_country` | |
-- | |
DROP TABLE IF EXISTS `embargo_country`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `embargo_country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`country` varchar(2) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `country` (`country`) | |
) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `embargo_country` | |
-- | |
LOCK TABLES `embargo_country` WRITE; | |
/*!40000 ALTER TABLE `embargo_country` DISABLE KEYS */; | |
INSERT INTO `embargo_country` VALUES (6,'AD'),(235,'AE'),(1,'AF'),(10,'AG'),(8,'AI'),(3,'AL'),(12,'AM'),(7,'AO'),(9,'AQ'),(11,'AR'),(5,'AS'),(15,'AT'),(14,'AU'),(13,'AW'),(2,'AX'),(16,'AZ'),(29,'BA'),(20,'BB'),(19,'BD'),(22,'BE'),(36,'BF'),(35,'BG'),(18,'BH'),(37,'BI'),(24,'BJ'),(185,'BL'),(25,'BM'),(34,'BN'),(27,'BO'),(28,'BQ'),(32,'BR'),(17,'BS'),(26,'BT'),(31,'BV'),(30,'BW'),(21,'BY'),(23,'BZ'),(41,'CA'),(48,'CC'),(52,'CD'),(43,'CF'),(51,'CG'),(217,'CH'),(55,'CI'),(53,'CK'),(45,'CL'),(40,'CM'),(46,'CN'),(49,'CO'),(54,'CR'),(57,'CU'),(38,'CV'),(58,'CW'),(47,'CX'),(59,'CY'),(60,'CZ'),(83,'DE'),(62,'DJ'),(61,'DK'),(63,'DM'),(64,'DO'),(4,'DZ'),(65,'EC'),(70,'EE'),(66,'EG'),(247,'EH'),(69,'ER'),(210,'ES'),(71,'ET'),(75,'FI'),(74,'FJ'),(72,'FK'),(144,'FM'),(73,'FO'),(76,'FR'),(80,'GA'),(236,'GB'),(88,'GD'),(82,'GE'),(77,'GF'),(92,'GG'),(84,'GH'),(85,'GI'),(87,'GL'),(81,'GM'),(93,'GN'),(89,'GP'),(68,'GQ'),(86,'GR'),(207,'GS'),(91,'GT'),(90,'GU'),(94,'GW'),(95,'GY'),(100,'HK'),(97,'HM'),(99,'HN'),(56,'HR'),(96,'HT'),(101,'HU'),(104,'ID'),(107,'IE'),(109,'IL'),(108,'IM'),(103,'IN'),(33,'IO'),(106,'IQ'),(105,'IR'),(102,'IS'),(110,'IT'),(113,'JE'),(111,'JM'),(114,'JO'),(112,'JP'),(116,'KE'),(120,'KG'),(39,'KH'),(117,'KI'),(50,'KM'),(187,'KN'),(164,'KP'),(208,'KR'),(119,'KW'),(42,'KY'),(115,'KZ'),(121,'LA'),(123,'LB'),(188,'LC'),(127,'LI'),(211,'LK'),(125,'LR'),(124,'LS'),(128,'LT'),(129,'LU'),(122,'LV'),(126,'LY'),(150,'MA'),(146,'MC'),(145,'MD'),(148,'ME'),(189,'MF'),(132,'MG'),(138,'MH'),(131,'MK'),(136,'ML'),(152,'MM'),(147,'MN'),(130,'MO'),(165,'MP'),(139,'MQ'),(140,'MR'),(149,'MS'),(137,'MT'),(141,'MU'),(135,'MV'),(133,'MW'),(143,'MX'),(134,'MY'),(151,'MZ'),(153,'NA'),(157,'NC'),(160,'NE'),(163,'NF'),(161,'NG'),(159,'NI'),(156,'NL'),(166,'NO'),(155,'NP'),(154,'NR'),(162,'NU'),(158,'NZ'),(167,'OM'),(171,'PA'),(174,'PE'),(78,'PF'),(172,'PG'),(175,'PH'),(168,'PK'),(177,'PL'),(190,'PM'),(176,'PN'),(179,'PR'),(170,'PS'),(178,'PT'),(169,'PW'),(173,'PY'),(180,'QA'),(181,'RE'),(182,'RO'),(197,'RS'),(183,'RU'),(184,'RW'),(195,'SA'),(204,'SB'),(198,'SC'),(212,'SD'),(216,'SE'),(200,'SG'),(186,'SH'),(203,'SI'),(214,'SJ'),(202,'SK'),(199,'SL'),(193,'SM'),(196,'SN'),(205,'SO'),(213,'SR'),(209,'SS'),(194,'ST'),(67,'SV'),(201,'SX'),(218,'SY'),(215,'SZ'),(231,'TC'),(44,'TD'),(79,'TF'),(224,'TG'),(222,'TH'),(220,'TJ'),(225,'TK'),(223,'TL'),(230,'TM'),(228,'TN'),(226,'TO'),(229,'TR'),(227,'TT'),(232,'TV'),(219,'TW'),(221,'TZ'),(234,'UA'),(233,'UG'),(237,'UM'),(238,'US'),(239,'UY'),(240,'UZ'),(98,'VA'),(191,'VC'),(242,'VE'),(244,'VG'),(245,'VI'),(243,'VN'),(241,'VU'),(246,'WF'),(192,'WS'),(118,'XK'),(248,'YE'),(142,'YT'),(206,'ZA'),(249,'ZM'),(250,'ZW'); | |
/*!40000 ALTER TABLE `embargo_country` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `embargo_countryaccessrule` | |
-- | |
DROP TABLE IF EXISTS `embargo_countryaccessrule`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `embargo_countryaccessrule` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`rule_type` varchar(255) NOT NULL, | |
`country_id` int(11) NOT NULL, | |
`restricted_course_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `embargo_countryaccessrul_restricted_course_id_cou_477b6bb1_uniq` (`restricted_course_id`,`country_id`), | |
KEY `embargo_countryacces_country_id_6af33e89_fk_embargo_c` (`country_id`), | |
CONSTRAINT `embargo_countryacces_country_id_6af33e89_fk_embargo_c` FOREIGN KEY (`country_id`) REFERENCES `embargo_country` (`id`), | |
CONSTRAINT `embargo_countryacces_restricted_course_id_eedb3d21_fk_embargo_r` FOREIGN KEY (`restricted_course_id`) REFERENCES `embargo_restrictedcourse` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `embargo_countryaccessrule` | |
-- | |
LOCK TABLES `embargo_countryaccessrule` WRITE; | |
/*!40000 ALTER TABLE `embargo_countryaccessrule` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `embargo_countryaccessrule` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `embargo_courseaccessrulehistory` | |
-- | |
DROP TABLE IF EXISTS `embargo_courseaccessrulehistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `embargo_courseaccessrulehistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`timestamp` datetime(6) NOT NULL, | |
`course_key` varchar(255) NOT NULL, | |
`snapshot` longtext, | |
PRIMARY KEY (`id`), | |
KEY `embargo_courseaccessrulehistory_timestamp_0267f0e6` (`timestamp`), | |
KEY `embargo_courseaccessrulehistory_course_key_6f7a7a06` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `embargo_courseaccessrulehistory` | |
-- | |
LOCK TABLES `embargo_courseaccessrulehistory` WRITE; | |
/*!40000 ALTER TABLE `embargo_courseaccessrulehistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `embargo_courseaccessrulehistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `embargo_embargoedcourse` | |
-- | |
DROP TABLE IF EXISTS `embargo_embargoedcourse`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `embargo_embargoedcourse` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`embargoed` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `embargo_embargoedcourse` | |
-- | |
LOCK TABLES `embargo_embargoedcourse` WRITE; | |
/*!40000 ALTER TABLE `embargo_embargoedcourse` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `embargo_embargoedcourse` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `embargo_embargoedstate` | |
-- | |
DROP TABLE IF EXISTS `embargo_embargoedstate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `embargo_embargoedstate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`embargoed_countries` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `embargo_embargoedstate` | |
-- | |
LOCK TABLES `embargo_embargoedstate` WRITE; | |
/*!40000 ALTER TABLE `embargo_embargoedstate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `embargo_embargoedstate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `embargo_ipfilter` | |
-- | |
DROP TABLE IF EXISTS `embargo_ipfilter`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `embargo_ipfilter` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`whitelist` longtext NOT NULL, | |
`blacklist` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `embargo_ipfilter` | |
-- | |
LOCK TABLES `embargo_ipfilter` WRITE; | |
/*!40000 ALTER TABLE `embargo_ipfilter` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `embargo_ipfilter` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `embargo_restrictedcourse` | |
-- | |
DROP TABLE IF EXISTS `embargo_restrictedcourse`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `embargo_restrictedcourse` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_key` varchar(255) NOT NULL, | |
`enroll_msg_key` varchar(255) NOT NULL, | |
`access_msg_key` varchar(255) NOT NULL, | |
`disable_access_check` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_key` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `embargo_restrictedcourse` | |
-- | |
LOCK TABLES `embargo_restrictedcourse` WRITE; | |
/*!40000 ALTER TABLE `embargo_restrictedcourse` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `embargo_restrictedcourse` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enrollmentnotificationemailtemplate` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enrollmentnotificationemailtemplate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enrollmentnotificationemailtemplate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`plaintext_template` longtext NOT NULL, | |
`html_template` longtext NOT NULL, | |
`subject_line` varchar(100) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_enrollmen_enterprise_customer__df17d9ff_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enrollmentnotificationemailtemplate` | |
-- | |
LOCK TABLES `enterprise_enrollmentnotificationemailtemplate` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enrollmentnotificationemailtemplate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enrollmentnotificationemailtemplate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecourseenrollment` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecourseenrollment`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecourseenrollment` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`enterprise_customer_user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_enterprisecou_enterprise_customer_user_71fe301a_uniq` (`enterprise_customer_user_id`,`course_id`), | |
CONSTRAINT `enterprise_enterpris_enterprise_customer__cf423e59_fk_enterpris` FOREIGN KEY (`enterprise_customer_user_id`) REFERENCES `enterprise_enterprisecustomeruser` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecourseenrollment` | |
-- | |
LOCK TABLES `enterprise_enterprisecourseenrollment` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecourseenrollment` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecourseenrollment` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecustomer` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecustomer`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecustomer` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`site_id` int(11) NOT NULL, | |
`catalog` int(10) unsigned DEFAULT NULL, | |
`enable_data_sharing_consent` tinyint(1) NOT NULL, | |
`enforce_data_sharing_consent` varchar(25) NOT NULL, | |
`enable_audit_enrollment` tinyint(1) NOT NULL, | |
`enable_audit_data_reporting` tinyint(1) NOT NULL, | |
`replace_sensitive_sso_username` tinyint(1) NOT NULL, | |
`hide_course_original_price` tinyint(1) NOT NULL, | |
`slug` varchar(30) NOT NULL, | |
PRIMARY KEY (`uuid`), | |
UNIQUE KEY `enterprise_enterprisecustomer_slug_80411f46_uniq` (`slug`), | |
KEY `enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id` (`site_id`), | |
CONSTRAINT `enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecustomer` | |
-- | |
LOCK TABLES `enterprise_enterprisecustomer` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomer` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomer` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecustomerbrandingconfiguration` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecustomerbrandingconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecustomerbrandingconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`logo` varchar(255) DEFAULT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_enterpris_enterprise_customer__09c1ee14_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecustomerbrandingconfiguration` | |
-- | |
LOCK TABLES `enterprise_enterprisecustomerbrandingconfiguration` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomerbrandingconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomerbrandingconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecustomercatalog` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecustomercatalog`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecustomercatalog` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
`content_filter` longtext, | |
`title` varchar(255) NOT NULL, | |
`enabled_course_modes` longtext NOT NULL, | |
`publish_audit_enrollment_urls` tinyint(1) NOT NULL, | |
PRIMARY KEY (`uuid`), | |
KEY `enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecustomercatalog` | |
-- | |
LOCK TABLES `enterprise_enterprisecustomercatalog` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomercatalog` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomercatalog` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecustomerentitlement` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecustomerentitlement`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecustomerentitlement` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`entitlement_id` int(10) unsigned NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `entitlement_id` (`entitlement_id`), | |
KEY `enterprise_enterpris_enterprise_customer__92784a82_fk_enterpris` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_enterpris_enterprise_customer__92784a82_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecustomerentitlement` | |
-- | |
LOCK TABLES `enterprise_enterprisecustomerentitlement` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomerentitlement` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomerentitlement` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecustomeridentityprovider` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecustomeridentityprovider`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecustomeridentityprovider` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`provider_id` varchar(50) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `provider_id` (`provider_id`), | |
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_enterpris_enterprise_customer__40b39097_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecustomeridentityprovider` | |
-- | |
LOCK TABLES `enterprise_enterprisecustomeridentityprovider` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomeridentityprovider` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomeridentityprovider` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecustomerreportingconfiguration` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecustomerreportingconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecustomerreportingconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`delivery_method` varchar(20) NOT NULL, | |
`email` longtext NOT NULL, | |
`frequency` varchar(20) NOT NULL, | |
`day_of_month` smallint(6) DEFAULT NULL, | |
`day_of_week` smallint(6) DEFAULT NULL, | |
`hour_of_day` smallint(6) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
`sftp_file_path` varchar(256) DEFAULT NULL, | |
`sftp_hostname` varchar(256) DEFAULT NULL, | |
`sftp_port` int(10) unsigned, | |
`sftp_username` varchar(256) DEFAULT NULL, | |
`decrypted_password` longblob, | |
`decrypted_sftp_password` longblob, | |
`data_type` varchar(20) NOT NULL, | |
`report_type` varchar(20) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `enterprise_enterprisecustom_enterprise_customer_id_d5b55543` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_enterpris_enterprise_customer__d5b55543_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecustomerreportingconfiguration` | |
-- | |
LOCK TABLES `enterprise_enterprisecustomerreportingconfiguration` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomerreportingconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomerreportingconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_enterprisecustomeruser` | |
-- | |
DROP TABLE IF EXISTS `enterprise_enterprisecustomeruser`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_enterprisecustomeruser` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`user_id` int(10) unsigned NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_enterprisecus_enterprise_customer_id_u_ffddc29f_uniq` (`enterprise_customer_id`,`user_id`), | |
CONSTRAINT `enterprise_enterpris_enterprise_customer__f0fea924_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_enterprisecustomeruser` | |
-- | |
LOCK TABLES `enterprise_enterprisecustomeruser` WRITE; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomeruser` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_enterprisecustomeruser` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_historicalenrollmentnotificationemailtemplate` | |
-- | |
DROP TABLE IF EXISTS `enterprise_historicalenrollmentnotificationemailtemplate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_historicalenrollmentnotificationemailtemplate` ( | |
`id` int(11) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`plaintext_template` longtext NOT NULL, | |
`html_template` longtext NOT NULL, | |
`subject_line` varchar(100) NOT NULL, | |
`history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`history_date` datetime(6) NOT NULL, | |
`history_type` varchar(1) NOT NULL, | |
`history_user_id` int(11) DEFAULT NULL, | |
`enterprise_customer_id` char(32) DEFAULT NULL, | |
`history_change_reason` varchar(100) DEFAULT NULL, | |
PRIMARY KEY (`history_id`), | |
KEY `enterprise_historica_history_user_id_f2a6d605_fk_auth_user` (`history_user_id`), | |
KEY `enterprise_historicalenroll_id_d4b3fed2` (`id`), | |
KEY `enterprise_historicalenroll_enterprise_customer_id_bc826535` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_historica_history_user_id_f2a6d605_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_historicalenrollmentnotificationemailtemplate` | |
-- | |
LOCK TABLES `enterprise_historicalenrollmentnotificationemailtemplate` WRITE; | |
/*!40000 ALTER TABLE `enterprise_historicalenrollmentnotificationemailtemplate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_historicalenrollmentnotificationemailtemplate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_historicalenterprisecourseenrollment` | |
-- | |
DROP TABLE IF EXISTS `enterprise_historicalenterprisecourseenrollment`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_historicalenterprisecourseenrollment` ( | |
`id` int(11) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`history_date` datetime(6) NOT NULL, | |
`history_type` varchar(1) NOT NULL, | |
`enterprise_customer_user_id` int(11) DEFAULT NULL, | |
`history_user_id` int(11) DEFAULT NULL, | |
`history_change_reason` varchar(100) DEFAULT NULL, | |
PRIMARY KEY (`history_id`), | |
KEY `enterprise_historica_history_user_id_a7d84786_fk_auth_user` (`history_user_id`), | |
KEY `enterprise_historicalenterprisecourseenrollment_id_452a4b04` (`id`), | |
KEY `enterprise_historicalenterp_enterprise_customer_user_id_380ecc4e` (`enterprise_customer_user_id`), | |
CONSTRAINT `enterprise_historica_history_user_id_a7d84786_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_historicalenterprisecourseenrollment` | |
-- | |
LOCK TABLES `enterprise_historicalenterprisecourseenrollment` WRITE; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecourseenrollment` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecourseenrollment` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_historicalenterprisecustomer` | |
-- | |
DROP TABLE IF EXISTS `enterprise_historicalenterprisecustomer`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_historicalenterprisecustomer` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`history_date` datetime(6) NOT NULL, | |
`history_type` varchar(1) NOT NULL, | |
`history_user_id` int(11) DEFAULT NULL, | |
`site_id` int(11) DEFAULT NULL, | |
`catalog` int(10) unsigned DEFAULT NULL, | |
`enable_data_sharing_consent` tinyint(1) NOT NULL, | |
`enforce_data_sharing_consent` varchar(25) NOT NULL, | |
`enable_audit_enrollment` tinyint(1) NOT NULL, | |
`enable_audit_data_reporting` tinyint(1) NOT NULL, | |
`history_change_reason` varchar(100) DEFAULT NULL, | |
`replace_sensitive_sso_username` tinyint(1) NOT NULL, | |
`hide_course_original_price` tinyint(1) NOT NULL, | |
`slug` varchar(30) NOT NULL, | |
PRIMARY KEY (`history_id`), | |
KEY `enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user` (`history_user_id`), | |
KEY `enterprise_historicalenterprisecustomer_uuid_75c3528e` (`uuid`), | |
KEY `enterprise_historicalenterprisecustomer_site_id_2463b5d7` (`site_id`), | |
KEY `enterprise_historicalenterprisecustomer_slug_04622dd4` (`slug`), | |
CONSTRAINT `enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_historicalenterprisecustomer` | |
-- | |
LOCK TABLES `enterprise_historicalenterprisecustomer` WRITE; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomer` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomer` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_historicalenterprisecustomercatalog` | |
-- | |
DROP TABLE IF EXISTS `enterprise_historicalenterprisecustomercatalog`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_historicalenterprisecustomercatalog` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`history_date` datetime(6) NOT NULL, | |
`history_type` varchar(1) NOT NULL, | |
`enterprise_customer_id` char(32) DEFAULT NULL, | |
`history_user_id` int(11) DEFAULT NULL, | |
`content_filter` longtext, | |
`title` varchar(255) NOT NULL, | |
`enabled_course_modes` longtext NOT NULL, | |
`history_change_reason` varchar(100) DEFAULT NULL, | |
`publish_audit_enrollment_urls` tinyint(1) NOT NULL, | |
PRIMARY KEY (`history_id`), | |
KEY `enterprise_historica_history_user_id_31eab231_fk_auth_user` (`history_user_id`), | |
KEY `enterprise_historicalenterprisecustomercatalog_uuid_42403101` (`uuid`), | |
KEY `enterprise_historicalenterp_enterprise_customer_id_664f4480` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_historica_history_user_id_31eab231_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_historicalenterprisecustomercatalog` | |
-- | |
LOCK TABLES `enterprise_historicalenterprisecustomercatalog` WRITE; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomercatalog` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomercatalog` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_historicalenterprisecustomerentitlement` | |
-- | |
DROP TABLE IF EXISTS `enterprise_historicalenterprisecustomerentitlement`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_historicalenterprisecustomerentitlement` ( | |
`id` int(11) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`entitlement_id` int(10) unsigned NOT NULL, | |
`history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`history_date` datetime(6) NOT NULL, | |
`history_type` varchar(1) NOT NULL, | |
`enterprise_customer_id` char(32) DEFAULT NULL, | |
`history_user_id` int(11) DEFAULT NULL, | |
`history_change_reason` varchar(100) DEFAULT NULL, | |
PRIMARY KEY (`history_id`), | |
KEY `enterprise_historica_history_user_id_f50bc660_fk_auth_user` (`history_user_id`), | |
KEY `enterprise_historicalenterprisecustomerentitlement_id_742c345f` (`id`), | |
KEY `enterprise_historicalenterp_entitlement_id_fd18cd7b` (`entitlement_id`), | |
KEY `enterprise_historicalenterp_enterprise_customer_id_a598c2f4` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_historica_history_user_id_f50bc660_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_historicalenterprisecustomerentitlement` | |
-- | |
LOCK TABLES `enterprise_historicalenterprisecustomerentitlement` WRITE; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomerentitlement` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomerentitlement` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_pendingenrollment` | |
-- | |
DROP TABLE IF EXISTS `enterprise_pendingenrollment`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_pendingenrollment` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`course_mode` varchar(25) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_pendingenrollment_user_id_course_id_6d4141c7_uniq` (`user_id`,`course_id`), | |
CONSTRAINT `enterprise_pendingen_user_id_12d21b1a_fk_enterpris` FOREIGN KEY (`user_id`) REFERENCES `enterprise_pendingenterprisecustomeruser` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_pendingenrollment` | |
-- | |
LOCK TABLES `enterprise_pendingenrollment` WRITE; | |
/*!40000 ALTER TABLE `enterprise_pendingenrollment` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_pendingenrollment` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `enterprise_pendingenterprisecustomeruser` | |
-- | |
DROP TABLE IF EXISTS `enterprise_pendingenterprisecustomeruser`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `enterprise_pendingenterprisecustomeruser` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`user_email` varchar(254) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_pendingenterp_user_email_5440d1d3_uniq` (`user_email`), | |
KEY `enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris` (`enterprise_customer_id`), | |
CONSTRAINT `enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `enterprise_pendingenterprisecustomeruser` | |
-- | |
LOCK TABLES `enterprise_pendingenterprisecustomeruser` WRITE; | |
/*!40000 ALTER TABLE `enterprise_pendingenterprisecustomeruser` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `enterprise_pendingenterprisecustomeruser` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `entitlements_courseentitlement` | |
-- | |
DROP TABLE IF EXISTS `entitlements_courseentitlement`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `entitlements_courseentitlement` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`course_uuid` char(32) NOT NULL, | |
`expired_at` datetime(6) DEFAULT NULL, | |
`mode` varchar(100) NOT NULL, | |
`order_number` varchar(128) DEFAULT NULL, | |
`enrollment_course_run_id` int(11) DEFAULT NULL, | |
`user_id` int(11) NOT NULL, | |
`_policy_id` int(11) DEFAULT NULL, | |
`refund_locked` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `entitlements_courseentitlement_uuid_2228ffad_uniq` (`uuid`), | |
KEY `entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id` (`user_id`), | |
KEY `entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c` (`enrollment_course_run_id`), | |
KEY `entitlements_coursee__policy_id_37bd7c13_fk_entitleme` (`_policy_id`), | |
CONSTRAINT `entitlements_coursee__policy_id_37bd7c13_fk_entitleme` FOREIGN KEY (`_policy_id`) REFERENCES `entitlements_courseentitlementpolicy` (`id`), | |
CONSTRAINT `entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c` FOREIGN KEY (`enrollment_course_run_id`) REFERENCES `student_courseenrollment` (`id`), | |
CONSTRAINT `entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `entitlements_courseentitlement` | |
-- | |
LOCK TABLES `entitlements_courseentitlement` WRITE; | |
/*!40000 ALTER TABLE `entitlements_courseentitlement` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `entitlements_courseentitlement` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `entitlements_courseentitlementpolicy` | |
-- | |
DROP TABLE IF EXISTS `entitlements_courseentitlementpolicy`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `entitlements_courseentitlementpolicy` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`expiration_period` bigint(20) NOT NULL, | |
`refund_period` bigint(20) NOT NULL, | |
`regain_period` bigint(20) NOT NULL, | |
`site_id` int(11) DEFAULT NULL, | |
`mode` varchar(32) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `entitlements_coursee_site_id_c7a9e107_fk_django_si` (`site_id`), | |
CONSTRAINT `entitlements_coursee_site_id_c7a9e107_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `entitlements_courseentitlementpolicy` | |
-- | |
LOCK TABLES `entitlements_courseentitlementpolicy` WRITE; | |
/*!40000 ALTER TABLE `entitlements_courseentitlementpolicy` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `entitlements_courseentitlementpolicy` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `entitlements_courseentitlementsupportdetail` | |
-- | |
DROP TABLE IF EXISTS `entitlements_courseentitlementsupportdetail`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `entitlements_courseentitlementsupportdetail` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`reason` varchar(15) NOT NULL, | |
`comments` longtext, | |
`entitlement_id` int(11) NOT NULL, | |
`support_user_id` int(11) NOT NULL, | |
`unenrolled_run_id` varchar(255) DEFAULT NULL, | |
`action` varchar(15) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `entitlements_coursee_entitlement_id_93b9020b_fk_entitleme` (`entitlement_id`), | |
KEY `entitlements_coursee_support_user_id_97d3095e_fk_auth_user` (`support_user_id`), | |
KEY `entitlements_courseentitlem_unenrolled_run_id_d72860e3` (`unenrolled_run_id`), | |
CONSTRAINT `entitlements_coursee_entitlement_id_93b9020b_fk_entitleme` FOREIGN KEY (`entitlement_id`) REFERENCES `entitlements_courseentitlement` (`id`), | |
CONSTRAINT `entitlements_coursee_support_user_id_97d3095e_fk_auth_user` FOREIGN KEY (`support_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `entitlements_courseentitlementsupportdetail` | |
-- | |
LOCK TABLES `entitlements_courseentitlementsupportdetail` WRITE; | |
/*!40000 ALTER TABLE `entitlements_courseentitlementsupportdetail` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `entitlements_courseentitlementsupportdetail` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `experiments_experimentdata` | |
-- | |
DROP TABLE IF EXISTS `experiments_experimentdata`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `experiments_experimentdata` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`experiment_id` smallint(5) unsigned NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`value` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `experiments_experimentda_user_id_experiment_id_ke_0ff27a32_uniq` (`user_id`,`experiment_id`,`key`), | |
KEY `experiments_experimentdata_user_id_experiment_id_15bd1b30_idx` (`user_id`,`experiment_id`), | |
KEY `experiments_experimentdata_experiment_id_e816cee5` (`experiment_id`), | |
CONSTRAINT `experiments_experimentdata_user_id_bd6f4720_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `experiments_experimentdata` | |
-- | |
LOCK TABLES `experiments_experimentdata` WRITE; | |
/*!40000 ALTER TABLE `experiments_experimentdata` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `experiments_experimentdata` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `experiments_experimentkeyvalue` | |
-- | |
DROP TABLE IF EXISTS `experiments_experimentkeyvalue`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `experiments_experimentkeyvalue` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`experiment_id` smallint(5) unsigned NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`value` longtext NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `experiments_experimentkeyvalue_experiment_id_key_15347f43_uniq` (`experiment_id`,`key`), | |
KEY `experiments_experimentkeyvalue_experiment_id_741d1a4b` (`experiment_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `experiments_experimentkeyvalue` | |
-- | |
LOCK TABLES `experiments_experimentkeyvalue` WRITE; | |
/*!40000 ALTER TABLE `experiments_experimentkeyvalue` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `experiments_experimentkeyvalue` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `external_auth_externalauthmap` | |
-- | |
DROP TABLE IF EXISTS `external_auth_externalauthmap`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `external_auth_externalauthmap` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`external_id` varchar(255) NOT NULL, | |
`external_domain` varchar(255) NOT NULL, | |
`external_credentials` longtext NOT NULL, | |
`external_email` varchar(255) NOT NULL, | |
`external_name` varchar(255) NOT NULL, | |
`internal_password` varchar(31) NOT NULL, | |
`dtcreated` datetime(6) NOT NULL, | |
`dtsignup` datetime(6) DEFAULT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `external_auth_externalau_external_id_external_dom_37deeb0d_uniq` (`external_id`,`external_domain`), | |
UNIQUE KEY `user_id` (`user_id`), | |
KEY `external_auth_externalauthmap_external_id_1144b306` (`external_id`), | |
KEY `external_auth_externalauthmap_external_domain_3c55a23b` (`external_domain`), | |
KEY `external_auth_externalauthmap_external_email_b44e5a91` (`external_email`), | |
KEY `external_auth_externalauthmap_external_name_2b3d1b42` (`external_name`), | |
CONSTRAINT `external_auth_externalauthmap_user_id_91b3ca08_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `external_auth_externalauthmap` | |
-- | |
LOCK TABLES `external_auth_externalauthmap` WRITE; | |
/*!40000 ALTER TABLE `external_auth_externalauthmap` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `external_auth_externalauthmap` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `grades_computegradessetting` | |
-- | |
DROP TABLE IF EXISTS `grades_computegradessetting`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `grades_computegradessetting` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`batch_size` int(11) NOT NULL, | |
`course_ids` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `grades_computegrades_changed_by_id_f2bf3678_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `grades_computegrades_changed_by_id_f2bf3678_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `grades_computegradessetting` | |
-- | |
LOCK TABLES `grades_computegradessetting` WRITE; | |
/*!40000 ALTER TABLE `grades_computegradessetting` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `grades_computegradessetting` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `grades_coursepersistentgradesflag` | |
-- | |
DROP TABLE IF EXISTS `grades_coursepersistentgradesflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `grades_coursepersistentgradesflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user` (`changed_by_id`), | |
KEY `grades_coursepersistentgradesflag_course_id_b494f1e7` (`course_id`), | |
CONSTRAINT `grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `grades_coursepersistentgradesflag` | |
-- | |
LOCK TABLES `grades_coursepersistentgradesflag` WRITE; | |
/*!40000 ALTER TABLE `grades_coursepersistentgradesflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `grades_coursepersistentgradesflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `grades_persistentcoursegrade` | |
-- | |
DROP TABLE IF EXISTS `grades_persistentcoursegrade`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `grades_persistentcoursegrade` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`user_id` int(11) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`course_edited_timestamp` datetime(6) DEFAULT NULL, | |
`course_version` varchar(255) NOT NULL, | |
`grading_policy_hash` varchar(255) NOT NULL, | |
`percent_grade` double NOT NULL, | |
`letter_grade` varchar(255) NOT NULL, | |
`passed_timestamp` datetime(6) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `grades_persistentcoursegrade_course_id_user_id_d7b585c9_uniq` (`course_id`,`user_id`), | |
KEY `grades_persistentcoursegrade_user_id_b2296589` (`user_id`), | |
KEY `grades_persistentcoursegr_passed_timestamp_course_i_27d4396e_idx` (`passed_timestamp`,`course_id`), | |
KEY `grades_persistentcoursegrade_modified_course_id_0e2ef09a_idx` (`modified`,`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `grades_persistentcoursegrade` | |
-- | |
LOCK TABLES `grades_persistentcoursegrade` WRITE; | |
/*!40000 ALTER TABLE `grades_persistentcoursegrade` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `grades_persistentcoursegrade` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `grades_persistentgradesenabledflag` | |
-- | |
DROP TABLE IF EXISTS `grades_persistentgradesenabledflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `grades_persistentgradesenabledflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`enabled_for_all_courses` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `grades_persistentgradesenabledflag` | |
-- | |
LOCK TABLES `grades_persistentgradesenabledflag` WRITE; | |
/*!40000 ALTER TABLE `grades_persistentgradesenabledflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `grades_persistentgradesenabledflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `grades_persistentsubsectiongrade` | |
-- | |
DROP TABLE IF EXISTS `grades_persistentsubsectiongrade`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `grades_persistentsubsectiongrade` ( | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`user_id` int(11) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`usage_key` varchar(255) NOT NULL, | |
`subtree_edited_timestamp` datetime(6) DEFAULT NULL, | |
`course_version` varchar(255) NOT NULL, | |
`earned_all` double NOT NULL, | |
`possible_all` double NOT NULL, | |
`earned_graded` double NOT NULL, | |
`possible_graded` double NOT NULL, | |
`visible_blocks_hash` varchar(100) NOT NULL, | |
`first_attempted` datetime(6) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `grades_persistentsubsect_course_id_user_id_usage__42820224_uniq` (`course_id`,`user_id`,`usage_key`), | |
KEY `grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi` (`visible_blocks_hash`), | |
KEY `grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx` (`modified`,`course_id`,`usage_key`), | |
KEY `grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx` (`first_attempted`,`course_id`,`user_id`), | |
CONSTRAINT `grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi` FOREIGN KEY (`visible_blocks_hash`) REFERENCES `grades_visibleblocks` (`hashed`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `grades_persistentsubsectiongrade` | |
-- | |
LOCK TABLES `grades_persistentsubsectiongrade` WRITE; | |
/*!40000 ALTER TABLE `grades_persistentsubsectiongrade` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `grades_persistentsubsectiongrade` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `grades_persistentsubsectiongradeoverride` | |
-- | |
DROP TABLE IF EXISTS `grades_persistentsubsectiongradeoverride`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `grades_persistentsubsectiongradeoverride` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`earned_all_override` double DEFAULT NULL, | |
`possible_all_override` double DEFAULT NULL, | |
`earned_graded_override` double DEFAULT NULL, | |
`possible_graded_override` double DEFAULT NULL, | |
`grade_id` bigint(20) unsigned NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `grade_id` (`grade_id`), | |
KEY `grades_persistentsubsectiongradeoverride_created_f80819d0` (`created`), | |
KEY `grades_persistentsubsectiongradeoverride_modified_21efde2a` (`modified`), | |
CONSTRAINT `grades_persistentsub_grade_id_74123016_fk_grades_pe` FOREIGN KEY (`grade_id`) REFERENCES `grades_persistentsubsectiongrade` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `grades_persistentsubsectiongradeoverride` | |
-- | |
LOCK TABLES `grades_persistentsubsectiongradeoverride` WRITE; | |
/*!40000 ALTER TABLE `grades_persistentsubsectiongradeoverride` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `grades_persistentsubsectiongradeoverride` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `grades_visibleblocks` | |
-- | |
DROP TABLE IF EXISTS `grades_visibleblocks`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `grades_visibleblocks` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`blocks_json` longtext NOT NULL, | |
`hashed` varchar(100) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `hashed` (`hashed`), | |
KEY `grades_visibleblocks_course_id_d5f8e206` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `grades_visibleblocks` | |
-- | |
LOCK TABLES `grades_visibleblocks` WRITE; | |
/*!40000 ALTER TABLE `grades_visibleblocks` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `grades_visibleblocks` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `instructor_task_gradereportsetting` | |
-- | |
DROP TABLE IF EXISTS `instructor_task_gradereportsetting`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `instructor_task_gradereportsetting` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`batch_size` int(11) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `instructor_task_grad_changed_by_id_dae9a995_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `instructor_task_grad_changed_by_id_dae9a995_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `instructor_task_gradereportsetting` | |
-- | |
LOCK TABLES `instructor_task_gradereportsetting` WRITE; | |
/*!40000 ALTER TABLE `instructor_task_gradereportsetting` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `instructor_task_gradereportsetting` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `instructor_task_instructortask` | |
-- | |
DROP TABLE IF EXISTS `instructor_task_instructortask`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `instructor_task_instructortask` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`task_type` varchar(50) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`task_key` varchar(255) NOT NULL, | |
`task_input` varchar(255) NOT NULL, | |
`task_id` varchar(255) NOT NULL, | |
`task_state` varchar(50) DEFAULT NULL, | |
`task_output` varchar(1024) DEFAULT NULL, | |
`created` datetime(6) DEFAULT NULL, | |
`updated` datetime(6) NOT NULL, | |
`subtasks` longtext NOT NULL, | |
`requester_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `instructor_task_inst_requester_id_307f955d_fk_auth_user` (`requester_id`), | |
KEY `instructor_task_instructortask_task_type_cefe183d` (`task_type`), | |
KEY `instructor_task_instructortask_course_id_b160f709` (`course_id`), | |
KEY `instructor_task_instructortask_task_key_c1af3961` (`task_key`), | |
KEY `instructor_task_instructortask_task_id_4aa92d04` (`task_id`), | |
KEY `instructor_task_instructortask_task_state_3ee4e9cb` (`task_state`), | |
CONSTRAINT `instructor_task_inst_requester_id_307f955d_fk_auth_user` FOREIGN KEY (`requester_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `instructor_task_instructortask` | |
-- | |
LOCK TABLES `instructor_task_instructortask` WRITE; | |
/*!40000 ALTER TABLE `instructor_task_instructortask` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `instructor_task_instructortask` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `integrated_channel_contentmetadataitemtransmission` | |
-- | |
DROP TABLE IF EXISTS `integrated_channel_contentmetadataitemtransmission`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `integrated_channel_contentmetadataitemtransmission` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`integrated_channel_code` varchar(30) NOT NULL, | |
`content_id` varchar(255) NOT NULL, | |
`channel_metadata` longtext NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `integrated_channel_conte_enterprise_customer_id_i_44ca3772_uniq` (`enterprise_customer_id`,`integrated_channel_code`,`content_id`), | |
CONSTRAINT `integrated_channel_c_enterprise_customer__f6439bfb_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `integrated_channel_contentmetadataitemtransmission` | |
-- | |
LOCK TABLES `integrated_channel_contentmetadataitemtransmission` WRITE; | |
/*!40000 ALTER TABLE `integrated_channel_contentmetadataitemtransmission` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `integrated_channel_contentmetadataitemtransmission` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `integrated_channel_learnerdatatransmissionaudit` | |
-- | |
DROP TABLE IF EXISTS `integrated_channel_learnerdatatransmissionaudit`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `integrated_channel_learnerdatatransmissionaudit` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`enterprise_course_enrollment_id` int(10) unsigned NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`course_completed` tinyint(1) NOT NULL, | |
`completed_timestamp` bigint(20) NOT NULL, | |
`instructor_name` varchar(255) NOT NULL, | |
`grade` varchar(100) NOT NULL, | |
`status` varchar(100) NOT NULL, | |
`error_message` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `integrated_channel_learnerdatatransmissionaudit` | |
-- | |
LOCK TABLES `integrated_channel_learnerdatatransmissionaudit` WRITE; | |
/*!40000 ALTER TABLE `integrated_channel_learnerdatatransmissionaudit` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `integrated_channel_learnerdatatransmissionaudit` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `lms_xblock_xblockasidesconfig` | |
-- | |
DROP TABLE IF EXISTS `lms_xblock_xblockasidesconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `lms_xblock_xblockasidesconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`disabled_blocks` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `lms_xblock_xblockasidesconfig` | |
-- | |
LOCK TABLES `lms_xblock_xblockasidesconfig` WRITE; | |
/*!40000 ALTER TABLE `lms_xblock_xblockasidesconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `lms_xblock_xblockasidesconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `microsite_configuration_microsite` | |
-- | |
DROP TABLE IF EXISTS `microsite_configuration_microsite`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `microsite_configuration_microsite` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`key` varchar(63) NOT NULL, | |
`values` longtext NOT NULL, | |
`site_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `key` (`key`), | |
UNIQUE KEY `site_id` (`site_id`), | |
CONSTRAINT `microsite_configurat_site_id_72d3779d_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `microsite_configuration_microsite` | |
-- | |
LOCK TABLES `microsite_configuration_microsite` WRITE; | |
/*!40000 ALTER TABLE `microsite_configuration_microsite` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `microsite_configuration_microsite` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `microsite_configuration_micrositehistory` | |
-- | |
DROP TABLE IF EXISTS `microsite_configuration_micrositehistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `microsite_configuration_micrositehistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`key` varchar(63) NOT NULL, | |
`values` longtext NOT NULL, | |
`site_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `microsite_configuration_micrositehistory_key_08571e17` (`key`), | |
KEY `microsite_configuration_micrositehistory_site_id_30b65af1` (`site_id`), | |
CONSTRAINT `microsite_configurat_site_id_30b65af1_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `microsite_configuration_micrositehistory` | |
-- | |
LOCK TABLES `microsite_configuration_micrositehistory` WRITE; | |
/*!40000 ALTER TABLE `microsite_configuration_micrositehistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `microsite_configuration_micrositehistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `microsite_configuration_micrositeorganizationmapping` | |
-- | |
DROP TABLE IF EXISTS `microsite_configuration_micrositeorganizationmapping`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `microsite_configuration_micrositeorganizationmapping` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`organization` varchar(63) NOT NULL, | |
`microsite_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `organization` (`organization`), | |
KEY `microsite_configurat_microsite_id_82aaeb2c_fk_microsite` (`microsite_id`), | |
CONSTRAINT `microsite_configurat_microsite_id_82aaeb2c_fk_microsite` FOREIGN KEY (`microsite_id`) REFERENCES `microsite_configuration_microsite` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `microsite_configuration_micrositeorganizationmapping` | |
-- | |
LOCK TABLES `microsite_configuration_micrositeorganizationmapping` WRITE; | |
/*!40000 ALTER TABLE `microsite_configuration_micrositeorganizationmapping` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `microsite_configuration_micrositeorganizationmapping` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `microsite_configuration_micrositetemplate` | |
-- | |
DROP TABLE IF EXISTS `microsite_configuration_micrositetemplate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `microsite_configuration_micrositetemplate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`template_uri` varchar(255) NOT NULL, | |
`template` longtext NOT NULL, | |
`microsite_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `microsite_configuration__microsite_id_template_ur_c346fbe0_uniq` (`microsite_id`,`template_uri`), | |
KEY `microsite_configuration_micrositetemplate_template_uri_6669f3eb` (`template_uri`), | |
CONSTRAINT `microsite_configurat_microsite_id_4ad4de72_fk_microsite` FOREIGN KEY (`microsite_id`) REFERENCES `microsite_configuration_microsite` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `microsite_configuration_micrositetemplate` | |
-- | |
LOCK TABLES `microsite_configuration_micrositetemplate` WRITE; | |
/*!40000 ALTER TABLE `microsite_configuration_micrositetemplate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `microsite_configuration_micrositetemplate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `milestones_coursecontentmilestone` | |
-- | |
DROP TABLE IF EXISTS `milestones_coursecontentmilestone`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `milestones_coursecontentmilestone` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`content_id` varchar(255) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`milestone_id` int(11) NOT NULL, | |
`milestone_relationship_type_id` int(11) NOT NULL, | |
`requirements` varchar(255) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `milestones_coursecontent_course_id_content_id_mil_7caa5ba5_uniq` (`course_id`,`content_id`,`milestone_id`), | |
KEY `milestones_coursecontentmilestone_course_id_6fd3fad0` (`course_id`), | |
KEY `milestones_coursecontentmilestone_content_id_21f4c95f` (`content_id`), | |
KEY `milestones_coursecon_milestone_id_bd7a608b_fk_milestone` (`milestone_id`), | |
KEY `milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone` (`milestone_relationship_type_id`), | |
KEY `milestones_coursecontentmilestone_active_b7ab709d` (`active`), | |
CONSTRAINT `milestones_coursecon_milestone_id_bd7a608b_fk_milestone` FOREIGN KEY (`milestone_id`) REFERENCES `milestones_milestone` (`id`), | |
CONSTRAINT `milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone` FOREIGN KEY (`milestone_relationship_type_id`) REFERENCES `milestones_milestonerelationshiptype` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `milestones_coursecontentmilestone` | |
-- | |
LOCK TABLES `milestones_coursecontentmilestone` WRITE; | |
/*!40000 ALTER TABLE `milestones_coursecontentmilestone` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `milestones_coursecontentmilestone` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `milestones_coursemilestone` | |
-- | |
DROP TABLE IF EXISTS `milestones_coursemilestone`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `milestones_coursemilestone` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`milestone_id` int(11) NOT NULL, | |
`milestone_relationship_type_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `milestones_coursemilestone_course_id_milestone_id_36b21ae8_uniq` (`course_id`,`milestone_id`), | |
KEY `milestones_coursemilestone_course_id_ce46a0fc` (`course_id`), | |
KEY `milestones_coursemil_milestone_id_03d9ef01_fk_milestone` (`milestone_id`), | |
KEY `milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone` (`milestone_relationship_type_id`), | |
KEY `milestones_coursemilestone_active_c590442e` (`active`), | |
CONSTRAINT `milestones_coursemil_milestone_id_03d9ef01_fk_milestone` FOREIGN KEY (`milestone_id`) REFERENCES `milestones_milestone` (`id`), | |
CONSTRAINT `milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone` FOREIGN KEY (`milestone_relationship_type_id`) REFERENCES `milestones_milestonerelationshiptype` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `milestones_coursemilestone` | |
-- | |
LOCK TABLES `milestones_coursemilestone` WRITE; | |
/*!40000 ALTER TABLE `milestones_coursemilestone` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `milestones_coursemilestone` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `milestones_milestone` | |
-- | |
DROP TABLE IF EXISTS `milestones_milestone`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `milestones_milestone` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`namespace` varchar(255) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`display_name` varchar(255) NOT NULL, | |
`description` longtext NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `milestones_milestone_namespace_name_0b80f867_uniq` (`namespace`,`name`), | |
KEY `milestones_milestone_namespace_a8e8807c` (`namespace`), | |
KEY `milestones_milestone_name_23fb0698` (`name`), | |
KEY `milestones_milestone_active_9a6c1703` (`active`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `milestones_milestone` | |
-- | |
LOCK TABLES `milestones_milestone` WRITE; | |
/*!40000 ALTER TABLE `milestones_milestone` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `milestones_milestone` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `milestones_milestonerelationshiptype` | |
-- | |
DROP TABLE IF EXISTS `milestones_milestonerelationshiptype`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `milestones_milestonerelationshiptype` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`name` varchar(25) NOT NULL, | |
`description` longtext NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`) | |
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `milestones_milestonerelationshiptype` | |
-- | |
LOCK TABLES `milestones_milestonerelationshiptype` WRITE; | |
/*!40000 ALTER TABLE `milestones_milestonerelationshiptype` DISABLE KEYS */; | |
INSERT INTO `milestones_milestonerelationshiptype` VALUES (1,'2018-09-11 20:00:55.084006','2018-09-11 20:00:55.084537','fulfills','Autogenerated milestone relationship type \"fulfills\"',1),(2,'2018-09-11 20:00:55.087600','2018-09-11 20:00:55.087972','requires','Autogenerated milestone relationship type \"requires\"',1); | |
/*!40000 ALTER TABLE `milestones_milestonerelationshiptype` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `milestones_usermilestone` | |
-- | |
DROP TABLE IF EXISTS `milestones_usermilestone`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `milestones_usermilestone` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
`source` longtext NOT NULL, | |
`collected` datetime(6) DEFAULT NULL, | |
`active` tinyint(1) NOT NULL, | |
`milestone_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `milestones_usermilestone_user_id_milestone_id_02197f01_uniq` (`user_id`,`milestone_id`), | |
KEY `milestones_usermiles_milestone_id_f90f9430_fk_milestone` (`milestone_id`), | |
KEY `milestones_usermilestone_user_id_b3e9aef4` (`user_id`), | |
KEY `milestones_usermilestone_active_93a18e7f` (`active`), | |
CONSTRAINT `milestones_usermiles_milestone_id_f90f9430_fk_milestone` FOREIGN KEY (`milestone_id`) REFERENCES `milestones_milestone` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `milestones_usermilestone` | |
-- | |
LOCK TABLES `milestones_usermilestone` WRITE; | |
/*!40000 ALTER TABLE `milestones_usermilestone` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `milestones_usermilestone` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `mobile_api_appversionconfig` | |
-- | |
DROP TABLE IF EXISTS `mobile_api_appversionconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `mobile_api_appversionconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`platform` varchar(50) NOT NULL, | |
`version` varchar(50) NOT NULL, | |
`major_version` int(11) NOT NULL, | |
`minor_version` int(11) NOT NULL, | |
`patch_version` int(11) NOT NULL, | |
`expire_at` datetime(6) DEFAULT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`updated_at` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `mobile_api_appversionconfig_platform_version_6b577430_uniq` (`platform`,`version`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `mobile_api_appversionconfig` | |
-- | |
LOCK TABLES `mobile_api_appversionconfig` WRITE; | |
/*!40000 ALTER TABLE `mobile_api_appversionconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `mobile_api_appversionconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `mobile_api_ignoremobileavailableflagconfig` | |
-- | |
DROP TABLE IF EXISTS `mobile_api_ignoremobileavailableflagconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `mobile_api_ignoremobileavailableflagconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `mobile_api_ignoremobileavailableflagconfig` | |
-- | |
LOCK TABLES `mobile_api_ignoremobileavailableflagconfig` WRITE; | |
/*!40000 ALTER TABLE `mobile_api_ignoremobileavailableflagconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `mobile_api_ignoremobileavailableflagconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `mobile_api_mobileapiconfig` | |
-- | |
DROP TABLE IF EXISTS `mobile_api_mobileapiconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `mobile_api_mobileapiconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`video_profiles` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `mobile_api_mobileapiconfig` | |
-- | |
LOCK TABLES `mobile_api_mobileapiconfig` WRITE; | |
/*!40000 ALTER TABLE `mobile_api_mobileapiconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `mobile_api_mobileapiconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `notes_note` | |
-- | |
DROP TABLE IF EXISTS `notes_note`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `notes_note` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`uri` varchar(255) NOT NULL, | |
`text` longtext NOT NULL, | |
`quote` longtext NOT NULL, | |
`range_start` varchar(2048) NOT NULL, | |
`range_start_offset` int(11) NOT NULL, | |
`range_end` varchar(2048) NOT NULL, | |
`range_end_offset` int(11) NOT NULL, | |
`tags` longtext NOT NULL, | |
`created` datetime(6) DEFAULT NULL, | |
`updated` datetime(6) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `notes_note_user_id_be6c80b4_fk_auth_user_id` (`user_id`), | |
KEY `notes_note_course_id_ab1355f9` (`course_id`), | |
KEY `notes_note_uri_f9ed526c` (`uri`), | |
KEY `notes_note_created_50dd44ea` (`created`), | |
KEY `notes_note_updated_f2abc1a5` (`updated`), | |
CONSTRAINT `notes_note_user_id_be6c80b4_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `notes_note` | |
-- | |
LOCK TABLES `notes_note` WRITE; | |
/*!40000 ALTER TABLE `notes_note` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `notes_note` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `notify_notification` | |
-- | |
DROP TABLE IF EXISTS `notify_notification`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `notify_notification` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`message` longtext NOT NULL, | |
`url` varchar(200) DEFAULT NULL, | |
`is_viewed` tinyint(1) NOT NULL, | |
`is_emailed` tinyint(1) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`subscription_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `notify_notification_subscription_id_0eae0084_fk_notify_su` (`subscription_id`), | |
CONSTRAINT `notify_notification_subscription_id_0eae0084_fk_notify_su` FOREIGN KEY (`subscription_id`) REFERENCES `notify_subscription` (`subscription_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `notify_notification` | |
-- | |
LOCK TABLES `notify_notification` WRITE; | |
/*!40000 ALTER TABLE `notify_notification` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `notify_notification` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `notify_notificationtype` | |
-- | |
DROP TABLE IF EXISTS `notify_notificationtype`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `notify_notificationtype` ( | |
`key` varchar(128) NOT NULL, | |
`label` varchar(128) DEFAULT NULL, | |
`content_type_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`key`), | |
KEY `notify_notificationt_content_type_id_f575bac5_fk_django_co` (`content_type_id`), | |
CONSTRAINT `notify_notificationt_content_type_id_f575bac5_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `notify_notificationtype` | |
-- | |
LOCK TABLES `notify_notificationtype` WRITE; | |
/*!40000 ALTER TABLE `notify_notificationtype` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `notify_notificationtype` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `notify_settings` | |
-- | |
DROP TABLE IF EXISTS `notify_settings`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `notify_settings` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`interval` smallint(6) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `notify_settings_user_id_088ebffc_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `notify_settings_user_id_088ebffc_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `notify_settings` | |
-- | |
LOCK TABLES `notify_settings` WRITE; | |
/*!40000 ALTER TABLE `notify_settings` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `notify_settings` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `notify_subscription` | |
-- | |
DROP TABLE IF EXISTS `notify_subscription`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `notify_subscription` ( | |
`subscription_id` int(11) NOT NULL AUTO_INCREMENT, | |
`object_id` varchar(64) DEFAULT NULL, | |
`send_emails` tinyint(1) NOT NULL, | |
`notification_type_id` varchar(128) NOT NULL, | |
`settings_id` int(11) NOT NULL, | |
PRIMARY KEY (`subscription_id`), | |
KEY `notify_subscription_notification_type_id_f73a8b13_fk_notify_no` (`notification_type_id`), | |
KEY `notify_subscription_settings_id_dbc3961d_fk_notify_settings_id` (`settings_id`), | |
CONSTRAINT `notify_subscription_notification_type_id_f73a8b13_fk_notify_no` FOREIGN KEY (`notification_type_id`) REFERENCES `notify_notificationtype` (`key`), | |
CONSTRAINT `notify_subscription_settings_id_dbc3961d_fk_notify_settings_id` FOREIGN KEY (`settings_id`) REFERENCES `notify_settings` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `notify_subscription` | |
-- | |
LOCK TABLES `notify_subscription` WRITE; | |
/*!40000 ALTER TABLE `notify_subscription` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `notify_subscription` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_accesstoken` | |
-- | |
DROP TABLE IF EXISTS `oauth2_accesstoken`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_accesstoken` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`token` varchar(255) NOT NULL, | |
`expires` datetime(6) NOT NULL, | |
`scope` int(11) NOT NULL, | |
`client_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth2_accesstoken_token_24468552` (`token`), | |
KEY `oauth2_accesstoken_client_id_e5c1beda_fk_oauth2_client_id` (`client_id`), | |
KEY `oauth2_accesstoken_user_id_bcf4c395_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth2_accesstoken_client_id_e5c1beda_fk_oauth2_client_id` FOREIGN KEY (`client_id`) REFERENCES `oauth2_client` (`id`), | |
CONSTRAINT `oauth2_accesstoken_user_id_bcf4c395_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_accesstoken` | |
-- | |
LOCK TABLES `oauth2_accesstoken` WRITE; | |
/*!40000 ALTER TABLE `oauth2_accesstoken` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_accesstoken` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_client` | |
-- | |
DROP TABLE IF EXISTS `oauth2_client`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_client` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`url` varchar(200) NOT NULL, | |
`redirect_uri` varchar(200) NOT NULL, | |
`client_id` varchar(255) NOT NULL, | |
`client_secret` varchar(255) NOT NULL, | |
`client_type` int(11) NOT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
`logout_uri` varchar(200) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth2_client_user_id_21c89c78_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth2_client_user_id_21c89c78_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_client` | |
-- | |
LOCK TABLES `oauth2_client` WRITE; | |
/*!40000 ALTER TABLE `oauth2_client` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_client` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_grant` | |
-- | |
DROP TABLE IF EXISTS `oauth2_grant`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_grant` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` varchar(255) NOT NULL, | |
`expires` datetime(6) NOT NULL, | |
`redirect_uri` varchar(255) NOT NULL, | |
`scope` int(11) NOT NULL, | |
`client_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
`nonce` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth2_grant_user_id_d8248ea3_fk_auth_user_id` (`user_id`), | |
KEY `oauth2_grant_client_id_code_expires_d1606e16_idx` (`client_id`,`code`,`expires`), | |
CONSTRAINT `oauth2_grant_client_id_430bbcf7_fk_oauth2_client_id` FOREIGN KEY (`client_id`) REFERENCES `oauth2_client` (`id`), | |
CONSTRAINT `oauth2_grant_user_id_d8248ea3_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_grant` | |
-- | |
LOCK TABLES `oauth2_grant` WRITE; | |
/*!40000 ALTER TABLE `oauth2_grant` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_grant` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_provider_accesstoken` | |
-- | |
DROP TABLE IF EXISTS `oauth2_provider_accesstoken`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_provider_accesstoken` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`token` varchar(255) NOT NULL, | |
`expires` datetime(6) NOT NULL, | |
`scope` longtext NOT NULL, | |
`application_id` int(11) NOT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `oauth2_provider_accesstoken_token_8af090f8_uniq` (`token`), | |
KEY `oauth2_provider_acce_application_id_b22886e1_fk_oauth2_pr` (`application_id`), | |
KEY `oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth2_provider_acce_application_id_b22886e1_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), | |
CONSTRAINT `oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_provider_accesstoken` | |
-- | |
LOCK TABLES `oauth2_provider_accesstoken` WRITE; | |
/*!40000 ALTER TABLE `oauth2_provider_accesstoken` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_provider_accesstoken` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_provider_application` | |
-- | |
DROP TABLE IF EXISTS `oauth2_provider_application`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_provider_application` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`client_id` varchar(100) NOT NULL, | |
`redirect_uris` longtext NOT NULL, | |
`client_type` varchar(32) NOT NULL, | |
`authorization_grant_type` varchar(32) NOT NULL, | |
`client_secret` varchar(255) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
`skip_authorization` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `client_id` (`client_id`), | |
KEY `oauth2_provider_application_client_secret_53133678` (`client_secret`), | |
KEY `oauth2_provider_application_user_id_79829054_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth2_provider_application_user_id_79829054_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_provider_application` | |
-- | |
LOCK TABLES `oauth2_provider_application` WRITE; | |
/*!40000 ALTER TABLE `oauth2_provider_application` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_provider_application` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_provider_grant` | |
-- | |
DROP TABLE IF EXISTS `oauth2_provider_grant`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_provider_grant` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` varchar(255) NOT NULL, | |
`expires` datetime(6) NOT NULL, | |
`redirect_uri` varchar(255) NOT NULL, | |
`scope` longtext NOT NULL, | |
`application_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `oauth2_provider_grant_code_49ab4ddf_uniq` (`code`), | |
KEY `oauth2_provider_gran_application_id_81923564_fk_oauth2_pr` (`application_id`), | |
KEY `oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth2_provider_gran_application_id_81923564_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), | |
CONSTRAINT `oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_provider_grant` | |
-- | |
LOCK TABLES `oauth2_provider_grant` WRITE; | |
/*!40000 ALTER TABLE `oauth2_provider_grant` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_provider_grant` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_provider_refreshtoken` | |
-- | |
DROP TABLE IF EXISTS `oauth2_provider_refreshtoken`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_provider_refreshtoken` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`token` varchar(255) NOT NULL, | |
`access_token_id` int(11) NOT NULL, | |
`application_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `access_token_id` (`access_token_id`), | |
UNIQUE KEY `oauth2_provider_refreshtoken_token_d090daa4_uniq` (`token`), | |
KEY `oauth2_provider_refr_application_id_2d1c311b_fk_oauth2_pr` (`application_id`), | |
KEY `oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth2_provider_refr_access_token_id_775e84e8_fk_oauth2_pr` FOREIGN KEY (`access_token_id`) REFERENCES `oauth2_provider_accesstoken` (`id`), | |
CONSTRAINT `oauth2_provider_refr_application_id_2d1c311b_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), | |
CONSTRAINT `oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_provider_refreshtoken` | |
-- | |
LOCK TABLES `oauth2_provider_refreshtoken` WRITE; | |
/*!40000 ALTER TABLE `oauth2_provider_refreshtoken` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_provider_refreshtoken` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_provider_trustedclient` | |
-- | |
DROP TABLE IF EXISTS `oauth2_provider_trustedclient`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_provider_trustedclient` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`client_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth2_provider_trus_client_id_01d81d1c_fk_oauth2_cl` (`client_id`), | |
CONSTRAINT `oauth2_provider_trus_client_id_01d81d1c_fk_oauth2_cl` FOREIGN KEY (`client_id`) REFERENCES `oauth2_client` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_provider_trustedclient` | |
-- | |
LOCK TABLES `oauth2_provider_trustedclient` WRITE; | |
/*!40000 ALTER TABLE `oauth2_provider_trustedclient` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_provider_trustedclient` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth2_refreshtoken` | |
-- | |
DROP TABLE IF EXISTS `oauth2_refreshtoken`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth2_refreshtoken` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`token` varchar(255) NOT NULL, | |
`expired` tinyint(1) NOT NULL, | |
`access_token_id` int(11) NOT NULL, | |
`client_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `access_token_id` (`access_token_id`), | |
KEY `oauth2_refreshtoken_client_id_22c52347_fk_oauth2_client_id` (`client_id`), | |
KEY `oauth2_refreshtoken_user_id_3d206436_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth2_refreshtoken_access_token_id_4302e339_fk_oauth2_ac` FOREIGN KEY (`access_token_id`) REFERENCES `oauth2_accesstoken` (`id`), | |
CONSTRAINT `oauth2_refreshtoken_client_id_22c52347_fk_oauth2_client_id` FOREIGN KEY (`client_id`) REFERENCES `oauth2_client` (`id`), | |
CONSTRAINT `oauth2_refreshtoken_user_id_3d206436_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth2_refreshtoken` | |
-- | |
LOCK TABLES `oauth2_refreshtoken` WRITE; | |
/*!40000 ALTER TABLE `oauth2_refreshtoken` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth2_refreshtoken` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth_dispatch_applicationaccess` | |
-- | |
DROP TABLE IF EXISTS `oauth_dispatch_applicationaccess`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth_dispatch_applicationaccess` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`scopes` varchar(825) NOT NULL, | |
`application_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `application_id` (`application_id`), | |
CONSTRAINT `oauth_dispatch_appli_application_id_dcddee6e_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth_dispatch_applicationaccess` | |
-- | |
LOCK TABLES `oauth_dispatch_applicationaccess` WRITE; | |
/*!40000 ALTER TABLE `oauth_dispatch_applicationaccess` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth_dispatch_applicationaccess` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth_dispatch_applicationorganization` | |
-- | |
DROP TABLE IF EXISTS `oauth_dispatch_applicationorganization`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth_dispatch_applicationorganization` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`relation_type` varchar(32) NOT NULL, | |
`application_id` int(11) NOT NULL, | |
`organization_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `oauth_dispatch_applicati_application_id_relation__1b4017f2_uniq` (`application_id`,`relation_type`,`organization_id`), | |
KEY `oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat` (`organization_id`), | |
CONSTRAINT `oauth_dispatch_appli_application_id_dea619c6_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), | |
CONSTRAINT `oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat` FOREIGN KEY (`organization_id`) REFERENCES `organizations_organization` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth_dispatch_applicationorganization` | |
-- | |
LOCK TABLES `oauth_dispatch_applicationorganization` WRITE; | |
/*!40000 ALTER TABLE `oauth_dispatch_applicationorganization` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth_dispatch_applicationorganization` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth_dispatch_restrictedapplication` | |
-- | |
DROP TABLE IF EXISTS `oauth_dispatch_restrictedapplication`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth_dispatch_restrictedapplication` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`application_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr` (`application_id`), | |
CONSTRAINT `oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth_dispatch_restrictedapplication` | |
-- | |
LOCK TABLES `oauth_dispatch_restrictedapplication` WRITE; | |
/*!40000 ALTER TABLE `oauth_dispatch_restrictedapplication` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth_dispatch_restrictedapplication` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth_provider_consumer` | |
-- | |
DROP TABLE IF EXISTS `oauth_provider_consumer`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth_provider_consumer` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`description` longtext NOT NULL, | |
`key` varchar(256) NOT NULL, | |
`secret` varchar(16) NOT NULL, | |
`status` smallint(6) NOT NULL, | |
`xauth_allowed` tinyint(1) NOT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth_provider_consumer_user_id_90ce7b49_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth_provider_consumer_user_id_90ce7b49_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth_provider_consumer` | |
-- | |
LOCK TABLES `oauth_provider_consumer` WRITE; | |
/*!40000 ALTER TABLE `oauth_provider_consumer` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth_provider_consumer` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth_provider_nonce` | |
-- | |
DROP TABLE IF EXISTS `oauth_provider_nonce`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth_provider_nonce` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`token_key` varchar(32) NOT NULL, | |
`consumer_key` varchar(256) NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`timestamp` int(10) unsigned NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth_provider_nonce_timestamp_b8e8504f` (`timestamp`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth_provider_nonce` | |
-- | |
LOCK TABLES `oauth_provider_nonce` WRITE; | |
/*!40000 ALTER TABLE `oauth_provider_nonce` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth_provider_nonce` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth_provider_scope` | |
-- | |
DROP TABLE IF EXISTS `oauth_provider_scope`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth_provider_scope` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`url` longtext NOT NULL, | |
`is_readonly` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth_provider_scope` | |
-- | |
LOCK TABLES `oauth_provider_scope` WRITE; | |
/*!40000 ALTER TABLE `oauth_provider_scope` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth_provider_scope` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `oauth_provider_token` | |
-- | |
DROP TABLE IF EXISTS `oauth_provider_token`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `oauth_provider_token` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`key` varchar(32) DEFAULT NULL, | |
`secret` varchar(16) DEFAULT NULL, | |
`token_type` smallint(6) NOT NULL, | |
`timestamp` int(11) NOT NULL, | |
`is_approved` tinyint(1) NOT NULL, | |
`verifier` varchar(10) NOT NULL, | |
`callback` varchar(2083) DEFAULT NULL, | |
`callback_confirmed` tinyint(1) NOT NULL, | |
`consumer_id` int(11) NOT NULL, | |
`scope_id` int(11) DEFAULT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `oauth_provider_token_consumer_id_419f9c5c_fk_oauth_pro` (`consumer_id`), | |
KEY `oauth_provider_token_scope_id_20fc31eb_fk_oauth_pro` (`scope_id`), | |
KEY `oauth_provider_token_user_id_6e750fab_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `oauth_provider_token_consumer_id_419f9c5c_fk_oauth_pro` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_provider_consumer` (`id`), | |
CONSTRAINT `oauth_provider_token_scope_id_20fc31eb_fk_oauth_pro` FOREIGN KEY (`scope_id`) REFERENCES `oauth_provider_scope` (`id`), | |
CONSTRAINT `oauth_provider_token_user_id_6e750fab_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `oauth_provider_token` | |
-- | |
LOCK TABLES `oauth_provider_token` WRITE; | |
/*!40000 ALTER TABLE `oauth_provider_token` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `oauth_provider_token` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `organizations_organization` | |
-- | |
DROP TABLE IF EXISTS `organizations_organization`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `organizations_organization` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`short_name` varchar(255) NOT NULL, | |
`description` longtext, | |
`logo` varchar(255) DEFAULT NULL, | |
`active` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `organizations_organization_name_71edc74b` (`name`), | |
KEY `organizations_organization_short_name_ef338963` (`short_name`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `organizations_organization` | |
-- | |
LOCK TABLES `organizations_organization` WRITE; | |
/*!40000 ALTER TABLE `organizations_organization` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `organizations_organization` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `organizations_organizationcourse` | |
-- | |
DROP TABLE IF EXISTS `organizations_organizationcourse`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `organizations_organizationcourse` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`organization_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `organizations_organizati_course_id_organization_i_06b1db31_uniq` (`course_id`,`organization_id`), | |
KEY `organizations_organi_organization_id_99e77fe0_fk_organizat` (`organization_id`), | |
KEY `organizations_organizationcourse_course_id_227b73bc` (`course_id`), | |
CONSTRAINT `organizations_organi_organization_id_99e77fe0_fk_organizat` FOREIGN KEY (`organization_id`) REFERENCES `organizations_organization` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `organizations_organizationcourse` | |
-- | |
LOCK TABLES `organizations_organizationcourse` WRITE; | |
/*!40000 ALTER TABLE `organizations_organizationcourse` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `organizations_organizationcourse` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexam` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexam`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexam` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`content_id` varchar(255) NOT NULL, | |
`external_id` varchar(255) DEFAULT NULL, | |
`exam_name` longtext NOT NULL, | |
`time_limit_mins` int(11) NOT NULL, | |
`due_date` datetime(6) DEFAULT NULL, | |
`is_proctored` tinyint(1) NOT NULL, | |
`is_practice_exam` tinyint(1) NOT NULL, | |
`is_active` tinyint(1) NOT NULL, | |
`hide_after_due` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `proctoring_proctoredexam_course_id_content_id_1d8358cc_uniq` (`course_id`,`content_id`), | |
KEY `proctoring_proctoredexam_course_id_8787b34f` (`course_id`), | |
KEY `proctoring_proctoredexam_content_id_13d3bec4` (`content_id`), | |
KEY `proctoring_proctoredexam_external_id_0181c110` (`external_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexam` | |
-- | |
LOCK TABLES `proctoring_proctoredexam` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexam` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexam` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamreviewpolicy` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamreviewpolicy`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamreviewpolicy` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`review_policy` longtext NOT NULL, | |
`proctored_exam_id` int(11) NOT NULL, | |
`set_by_user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin` (`proctored_exam_id`), | |
KEY `proctoring_proctored_set_by_user_id_7c101300_fk_auth_user` (`set_by_user_id`), | |
CONSTRAINT `proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_set_by_user_id_7c101300_fk_auth_user` FOREIGN KEY (`set_by_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamreviewpolicy` | |
-- | |
LOCK TABLES `proctoring_proctoredexamreviewpolicy` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicy` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicy` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamreviewpolicyhistory` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamreviewpolicyhistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamreviewpolicyhistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`original_id` int(11) NOT NULL, | |
`review_policy` longtext NOT NULL, | |
`proctored_exam_id` int(11) NOT NULL, | |
`set_by_user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin` (`proctored_exam_id`), | |
KEY `proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user` (`set_by_user_id`), | |
KEY `proctoring_proctoredexamreviewpolicyhistory_original_id_ca04913d` (`original_id`), | |
CONSTRAINT `proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user` FOREIGN KEY (`set_by_user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamreviewpolicyhistory` | |
-- | |
LOCK TABLES `proctoring_proctoredexamreviewpolicyhistory` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicyhistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicyhistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamsoftwaresecurereview` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamsoftwaresecurereview`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamsoftwaresecurereview` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`attempt_code` varchar(255) NOT NULL, | |
`review_status` varchar(255) NOT NULL, | |
`raw_data` longtext NOT NULL, | |
`video_url` longtext NOT NULL, | |
`exam_id` int(11) DEFAULT NULL, | |
`reviewed_by_id` int(11) DEFAULT NULL, | |
`student_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `proctoring_proctoredexam_attempt_code_706d3717_uniq` (`attempt_code`), | |
KEY `proctoring_proctored_exam_id_ea6095a3_fk_proctorin` (`exam_id`), | |
KEY `proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user` (`reviewed_by_id`), | |
KEY `proctoring_proctored_student_id_7e197288_fk_auth_user` (`student_id`), | |
CONSTRAINT `proctoring_proctored_exam_id_ea6095a3_fk_proctorin` FOREIGN KEY (`exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user` FOREIGN KEY (`reviewed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `proctoring_proctored_student_id_7e197288_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamsoftwaresecurereview` | |
-- | |
LOCK TABLES `proctoring_proctoredexamsoftwaresecurereview` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereview` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereview` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamsoftwaresecurereviewhistory` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamsoftwaresecurereviewhistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamsoftwaresecurereviewhistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`attempt_code` varchar(255) NOT NULL, | |
`review_status` varchar(255) NOT NULL, | |
`raw_data` longtext NOT NULL, | |
`video_url` longtext NOT NULL, | |
`exam_id` int(11) DEFAULT NULL, | |
`reviewed_by_id` int(11) DEFAULT NULL, | |
`student_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `proctoring_proctored_exam_id_380d8588_fk_proctorin` (`exam_id`), | |
KEY `proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user` (`reviewed_by_id`), | |
KEY `proctoring_proctored_student_id_97a63653_fk_auth_user` (`student_id`), | |
KEY `proctoring_proctoredexamsof_attempt_code_695faa63` (`attempt_code`), | |
CONSTRAINT `proctoring_proctored_exam_id_380d8588_fk_proctorin` FOREIGN KEY (`exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user` FOREIGN KEY (`reviewed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `proctoring_proctored_student_id_97a63653_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamsoftwaresecurereviewhistory` | |
-- | |
LOCK TABLES `proctoring_proctoredexamsoftwaresecurereviewhistory` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereviewhistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereviewhistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamstudentallowance` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamstudentallowance`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamstudentallowance` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`value` varchar(255) NOT NULL, | |
`proctored_exam_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `proctoring_proctoredexam_user_id_proctored_exam_i_56de5b8f_uniq` (`user_id`,`proctored_exam_id`,`key`), | |
KEY `proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin` (`proctored_exam_id`), | |
CONSTRAINT `proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_user_id_f21ce9b6_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamstudentallowance` | |
-- | |
LOCK TABLES `proctoring_proctoredexamstudentallowance` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowance` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowance` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamstudentallowancehistory` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamstudentallowancehistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamstudentallowancehistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`allowance_id` int(11) NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`value` varchar(255) NOT NULL, | |
`proctored_exam_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin` (`proctored_exam_id`), | |
KEY `proctoring_proctored_user_id_29b863c1_fk_auth_user` (`user_id`), | |
CONSTRAINT `proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_user_id_29b863c1_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamstudentallowancehistory` | |
-- | |
LOCK TABLES `proctoring_proctoredexamstudentallowancehistory` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowancehistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowancehistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamstudentattempt` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamstudentattempt`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamstudentattempt` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`started_at` datetime(6) DEFAULT NULL, | |
`completed_at` datetime(6) DEFAULT NULL, | |
`last_poll_timestamp` datetime(6) DEFAULT NULL, | |
`last_poll_ipaddr` varchar(32) DEFAULT NULL, | |
`attempt_code` varchar(255) DEFAULT NULL, | |
`external_id` varchar(255) DEFAULT NULL, | |
`allowed_time_limit_mins` int(11) DEFAULT NULL, | |
`status` varchar(64) NOT NULL, | |
`taking_as_proctored` tinyint(1) NOT NULL, | |
`is_sample_attempt` tinyint(1) NOT NULL, | |
`student_name` varchar(255) NOT NULL, | |
`review_policy_id` int(11) DEFAULT NULL, | |
`proctored_exam_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
`is_status_acknowledged` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `proctoring_proctoredexam_user_id_proctored_exam_i_1464b206_uniq` (`user_id`,`proctored_exam_id`), | |
KEY `proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin` (`proctored_exam_id`), | |
KEY `proctoring_proctoredexamstudentattempt_attempt_code_b10ad854` (`attempt_code`), | |
KEY `proctoring_proctoredexamstudentattempt_external_id_9c302af3` (`external_id`), | |
CONSTRAINT `proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_user_id_2b58b7ed_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamstudentattempt` | |
-- | |
LOCK TABLES `proctoring_proctoredexamstudentattempt` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempt` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempt` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamstudentattemptcomment` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamstudentattemptcomment`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamstudentattemptcomment` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`start_time` int(11) NOT NULL, | |
`stop_time` int(11) NOT NULL, | |
`duration` int(11) NOT NULL, | |
`comment` longtext NOT NULL, | |
`status` varchar(255) NOT NULL, | |
`review_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `proctoring_proctored_review_id_7f4eec67_fk_proctorin` (`review_id`), | |
CONSTRAINT `proctoring_proctored_review_id_7f4eec67_fk_proctorin` FOREIGN KEY (`review_id`) REFERENCES `proctoring_proctoredexamsoftwaresecurereview` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamstudentattemptcomment` | |
-- | |
LOCK TABLES `proctoring_proctoredexamstudentattemptcomment` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattemptcomment` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattemptcomment` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `proctoring_proctoredexamstudentattempthistory` | |
-- | |
DROP TABLE IF EXISTS `proctoring_proctoredexamstudentattempthistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `proctoring_proctoredexamstudentattempthistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`attempt_id` int(11) DEFAULT NULL, | |
`started_at` datetime(6) DEFAULT NULL, | |
`completed_at` datetime(6) DEFAULT NULL, | |
`attempt_code` varchar(255) DEFAULT NULL, | |
`external_id` varchar(255) DEFAULT NULL, | |
`allowed_time_limit_mins` int(11) DEFAULT NULL, | |
`status` varchar(64) NOT NULL, | |
`taking_as_proctored` tinyint(1) NOT NULL, | |
`is_sample_attempt` tinyint(1) NOT NULL, | |
`student_name` varchar(255) NOT NULL, | |
`review_policy_id` int(11) DEFAULT NULL, | |
`last_poll_timestamp` datetime(6) DEFAULT NULL, | |
`last_poll_ipaddr` varchar(32) DEFAULT NULL, | |
`proctored_exam_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin` (`proctored_exam_id`), | |
KEY `proctoring_proctored_user_id_52fb8674_fk_auth_user` (`user_id`), | |
KEY `proctoring_proctoredexamstu_attempt_code_8db28074` (`attempt_code`), | |
KEY `proctoring_proctoredexamstu_external_id_65de5faf` (`external_id`), | |
CONSTRAINT `proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), | |
CONSTRAINT `proctoring_proctored_user_id_52fb8674_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `proctoring_proctoredexamstudentattempthistory` | |
-- | |
LOCK TABLES `proctoring_proctoredexamstudentattempthistory` WRITE; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempthistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempthistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `programs_programsapiconfig` | |
-- | |
DROP TABLE IF EXISTS `programs_programsapiconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `programs_programsapiconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`marketing_path` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `programs_programsapi_changed_by_id_93e09d74_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `programs_programsapi_changed_by_id_93e09d74_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `programs_programsapiconfig` | |
-- | |
LOCK TABLES `programs_programsapiconfig` WRITE; | |
/*!40000 ALTER TABLE `programs_programsapiconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `programs_programsapiconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `rss_proxy_whitelistedrssurl` | |
-- | |
DROP TABLE IF EXISTS `rss_proxy_whitelistedrssurl`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `rss_proxy_whitelistedrssurl` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`url` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `url` (`url`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `rss_proxy_whitelistedrssurl` | |
-- | |
LOCK TABLES `rss_proxy_whitelistedrssurl` WRITE; | |
/*!40000 ALTER TABLE `rss_proxy_whitelistedrssurl` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `rss_proxy_whitelistedrssurl` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` | |
-- | |
DROP TABLE IF EXISTS `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`sapsf_base_url` varchar(255) NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`secret` varchar(255) NOT NULL, | |
`enterprise_customer_id` char(32) NOT NULL, | |
`sapsf_company_id` varchar(255) NOT NULL, | |
`sapsf_user_id` varchar(255) NOT NULL, | |
`user_type` varchar(20) NOT NULL, | |
`transmission_chunk_size` int(11) NOT NULL, | |
`additional_locales` longtext NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), | |
CONSTRAINT `sap_success_factors__enterprise_customer__4819a28c_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` | |
-- | |
LOCK TABLES `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` WRITE; | |
/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `sap_success_factors_sapsuccessfactorsglobalconfiguration` | |
-- | |
DROP TABLE IF EXISTS `sap_success_factors_sapsuccessfactorsglobalconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `sap_success_factors_sapsuccessfactorsglobalconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`completion_status_api_path` varchar(255) NOT NULL, | |
`course_api_path` varchar(255) NOT NULL, | |
`oauth_api_path` varchar(255) NOT NULL, | |
`provider_id` varchar(100) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `sap_success_factors__changed_by_id_e3241cc9_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `sap_success_factors__changed_by_id_e3241cc9_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `sap_success_factors_sapsuccessfactorsglobalconfiguration` | |
-- | |
LOCK TABLES `sap_success_factors_sapsuccessfactorsglobalconfiguration` WRITE; | |
/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsglobalconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsglobalconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` | |
-- | |
DROP TABLE IF EXISTS `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`enterprise_course_enrollment_id` int(10) unsigned NOT NULL, | |
`sapsf_user_id` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`course_completed` tinyint(1) NOT NULL, | |
`completed_timestamp` bigint(20) NOT NULL, | |
`instructor_name` varchar(255) NOT NULL, | |
`grade` varchar(100) NOT NULL, | |
`status` varchar(100) NOT NULL, | |
`error_message` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` | |
-- | |
LOCK TABLES `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` WRITE; | |
/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `schedules_schedule` | |
-- | |
DROP TABLE IF EXISTS `schedules_schedule`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `schedules_schedule` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`start` datetime(6) NOT NULL, | |
`upgrade_deadline` datetime(6) DEFAULT NULL, | |
`enrollment_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `enrollment_id` (`enrollment_id`), | |
KEY `schedules_schedule_start_8685ed8e` (`start`), | |
KEY `schedules_schedule_upgrade_deadline_0079081d` (`upgrade_deadline`), | |
CONSTRAINT `schedules_schedule_enrollment_id_91bf8152_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `schedules_schedule` | |
-- | |
LOCK TABLES `schedules_schedule` WRITE; | |
/*!40000 ALTER TABLE `schedules_schedule` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `schedules_schedule` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `schedules_scheduleconfig` | |
-- | |
DROP TABLE IF EXISTS `schedules_scheduleconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `schedules_scheduleconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`create_schedules` tinyint(1) NOT NULL, | |
`enqueue_recurring_nudge` tinyint(1) NOT NULL, | |
`deliver_recurring_nudge` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`site_id` int(11) NOT NULL, | |
`deliver_upgrade_reminder` tinyint(1) NOT NULL, | |
`enqueue_upgrade_reminder` tinyint(1) NOT NULL, | |
`deliver_course_update` tinyint(1) NOT NULL, | |
`enqueue_course_update` tinyint(1) NOT NULL, | |
`hold_back_ratio` double NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id` (`changed_by_id`), | |
KEY `schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id` (`site_id`), | |
CONSTRAINT `schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `schedules_scheduleconfig` | |
-- | |
LOCK TABLES `schedules_scheduleconfig` WRITE; | |
/*!40000 ALTER TABLE `schedules_scheduleconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `schedules_scheduleconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `schedules_scheduleexperience` | |
-- | |
DROP TABLE IF EXISTS `schedules_scheduleexperience`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `schedules_scheduleexperience` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`experience_type` smallint(5) unsigned NOT NULL, | |
`schedule_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `schedule_id` (`schedule_id`), | |
CONSTRAINT `schedules_scheduleex_schedule_id_ed95c8e7_fk_schedules` FOREIGN KEY (`schedule_id`) REFERENCES `schedules_schedule` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `schedules_scheduleexperience` | |
-- | |
LOCK TABLES `schedules_scheduleexperience` WRITE; | |
/*!40000 ALTER TABLE `schedules_scheduleexperience` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `schedules_scheduleexperience` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `self_paced_selfpacedconfiguration` | |
-- | |
DROP TABLE IF EXISTS `self_paced_selfpacedconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `self_paced_selfpacedconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`enable_course_home_improvements` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `self_paced_selfpacedconfiguration` | |
-- | |
LOCK TABLES `self_paced_selfpacedconfiguration` WRITE; | |
/*!40000 ALTER TABLE `self_paced_selfpacedconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `self_paced_selfpacedconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_certificateitem` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_certificateitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_certificateitem` ( | |
`orderitem_ptr_id` int(11) NOT NULL, | |
`course_id` varchar(128) NOT NULL, | |
`mode` varchar(50) NOT NULL, | |
`course_enrollment_id` int(11) NOT NULL, | |
PRIMARY KEY (`orderitem_ptr_id`), | |
KEY `shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c` (`course_enrollment_id`), | |
KEY `shoppingcart_certificateitem_course_id_a2a7b56c` (`course_id`), | |
KEY `shoppingcart_certificateitem_mode_0b5e8a8c` (`mode`), | |
CONSTRAINT `shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c` FOREIGN KEY (`course_enrollment_id`) REFERENCES `student_courseenrollment` (`id`), | |
CONSTRAINT `shoppingcart_certifi_orderitem_ptr_id_7fee9beb_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_certificateitem` | |
-- | |
LOCK TABLES `shoppingcart_certificateitem` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_certificateitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_certificateitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_coupon` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_coupon`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_coupon` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` varchar(32) NOT NULL, | |
`description` varchar(255) DEFAULT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`percentage_discount` int(11) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`is_active` tinyint(1) NOT NULL, | |
`expiration_date` datetime(6) DEFAULT NULL, | |
`created_by_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id` (`created_by_id`), | |
KEY `shoppingcart_coupon_code_67dfa4a3` (`code`), | |
CONSTRAINT `shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_coupon` | |
-- | |
LOCK TABLES `shoppingcart_coupon` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_coupon` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_coupon` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_couponredemption` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_couponredemption`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_couponredemption` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`coupon_id` int(11) NOT NULL, | |
`order_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc` (`coupon_id`), | |
KEY `shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc` (`order_id`), | |
KEY `shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc` FOREIGN KEY (`coupon_id`) REFERENCES `shoppingcart_coupon` (`id`), | |
CONSTRAINT `shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`), | |
CONSTRAINT `shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_couponredemption` | |
-- | |
LOCK TABLES `shoppingcart_couponredemption` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_couponredemption` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_couponredemption` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_courseregcodeitem` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_courseregcodeitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_courseregcodeitem` ( | |
`orderitem_ptr_id` int(11) NOT NULL, | |
`course_id` varchar(128) NOT NULL, | |
`mode` varchar(50) NOT NULL, | |
PRIMARY KEY (`orderitem_ptr_id`), | |
KEY `shoppingcart_courseregcodeitem_course_id_7c18f431` (`course_id`), | |
KEY `shoppingcart_courseregcodeitem_mode_279aa3a8` (`mode`), | |
CONSTRAINT `shoppingcart_courser_orderitem_ptr_id_e35a50e9_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_courseregcodeitem` | |
-- | |
LOCK TABLES `shoppingcart_courseregcodeitem` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_courseregcodeitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_courseregcodeitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_courseregcodeitemannotation` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_courseregcodeitemannotation`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_courseregcodeitemannotation` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(128) NOT NULL, | |
`annotation` longtext, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_courseregcodeitemannotation` | |
-- | |
LOCK TABLES `shoppingcart_courseregcodeitemannotation` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_courseregcodeitemannotation` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_courseregcodeitemannotation` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_courseregistrationcode` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_courseregistrationcode`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_courseregistrationcode` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` varchar(32) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`mode_slug` varchar(100) DEFAULT NULL, | |
`is_valid` tinyint(1) NOT NULL, | |
`created_by_id` int(11) NOT NULL, | |
`invoice_id` int(11) DEFAULT NULL, | |
`order_id` int(11) DEFAULT NULL, | |
`invoice_item_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `code` (`code`), | |
KEY `shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user` (`created_by_id`), | |
KEY `shoppingcart_courseregistrationcode_course_id_ebec7eb9` (`course_id`), | |
KEY `shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc` (`invoice_id`), | |
KEY `shoppingcart_courser_order_id_18d73357_fk_shoppingc` (`order_id`), | |
KEY `shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc` (`invoice_item_id`), | |
CONSTRAINT `shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`), | |
CONSTRAINT `shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc` FOREIGN KEY (`invoice_item_id`) REFERENCES `shoppingcart_courseregistrationcodeinvoiceitem` (`invoiceitem_ptr_id`), | |
CONSTRAINT `shoppingcart_courser_order_id_18d73357_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_courseregistrationcode` | |
-- | |
LOCK TABLES `shoppingcart_courseregistrationcode` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_courseregistrationcode` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_courseregistrationcode` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_courseregistrationcodeinvoiceitem` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_courseregistrationcodeinvoiceitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_courseregistrationcodeinvoiceitem` ( | |
`invoiceitem_ptr_id` int(11) NOT NULL, | |
`course_id` varchar(128) NOT NULL, | |
PRIMARY KEY (`invoiceitem_ptr_id`), | |
KEY `shoppingcart_courseregistra_course_id_e8c94aec` (`course_id`), | |
CONSTRAINT `shoppingcart_courser_invoiceitem_ptr_id_59b1f26d_fk_shoppingc` FOREIGN KEY (`invoiceitem_ptr_id`) REFERENCES `shoppingcart_invoiceitem` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_courseregistrationcodeinvoiceitem` | |
-- | |
LOCK TABLES `shoppingcart_courseregistrationcodeinvoiceitem` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_courseregistrationcodeinvoiceitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_courseregistrationcodeinvoiceitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_donation` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_donation`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_donation` ( | |
`orderitem_ptr_id` int(11) NOT NULL, | |
`donation_type` varchar(32) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`orderitem_ptr_id`), | |
KEY `shoppingcart_donation_course_id_e0c7203c` (`course_id`), | |
CONSTRAINT `shoppingcart_donatio_orderitem_ptr_id_edf717c8_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_donation` | |
-- | |
LOCK TABLES `shoppingcart_donation` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_donation` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_donation` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_donationconfiguration` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_donationconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_donationconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_donationconfiguration` | |
-- | |
LOCK TABLES `shoppingcart_donationconfiguration` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_donationconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_donationconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_invoice` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_invoice`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_invoice` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`company_name` varchar(255) NOT NULL, | |
`company_contact_name` varchar(255) NOT NULL, | |
`company_contact_email` varchar(255) NOT NULL, | |
`recipient_name` varchar(255) NOT NULL, | |
`recipient_email` varchar(255) NOT NULL, | |
`address_line_1` varchar(255) NOT NULL, | |
`address_line_2` varchar(255) DEFAULT NULL, | |
`address_line_3` varchar(255) DEFAULT NULL, | |
`city` varchar(255) DEFAULT NULL, | |
`state` varchar(255) DEFAULT NULL, | |
`zip` varchar(15) DEFAULT NULL, | |
`country` varchar(64) DEFAULT NULL, | |
`total_amount` double NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`internal_reference` varchar(255) DEFAULT NULL, | |
`customer_reference_number` varchar(63) DEFAULT NULL, | |
`is_valid` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_invoice_company_name_4d19b1d3` (`company_name`), | |
KEY `shoppingcart_invoice_course_id_eaefd2e0` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_invoice` | |
-- | |
LOCK TABLES `shoppingcart_invoice` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_invoice` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_invoice` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_invoicehistory` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_invoicehistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_invoicehistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`timestamp` datetime(6) NOT NULL, | |
`snapshot` longtext NOT NULL, | |
`invoice_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc` (`invoice_id`), | |
KEY `shoppingcart_invoicehistory_timestamp_61c10fc3` (`timestamp`), | |
CONSTRAINT `shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_invoicehistory` | |
-- | |
LOCK TABLES `shoppingcart_invoicehistory` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_invoicehistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_invoicehistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_invoiceitem` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_invoiceitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_invoiceitem` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`qty` int(11) NOT NULL, | |
`unit_price` decimal(30,2) NOT NULL, | |
`currency` varchar(8) NOT NULL, | |
`invoice_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc` (`invoice_id`), | |
CONSTRAINT `shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_invoiceitem` | |
-- | |
LOCK TABLES `shoppingcart_invoiceitem` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_invoiceitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_invoiceitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_invoicetransaction` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_invoicetransaction`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_invoicetransaction` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`amount` decimal(30,2) NOT NULL, | |
`currency` varchar(8) NOT NULL, | |
`comments` longtext, | |
`status` varchar(32) NOT NULL, | |
`created_by_id` int(11) NOT NULL, | |
`invoice_id` int(11) NOT NULL, | |
`last_modified_by_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user` (`created_by_id`), | |
KEY `shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc` (`invoice_id`), | |
KEY `shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user` (`last_modified_by_id`), | |
CONSTRAINT `shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`), | |
CONSTRAINT `shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user` FOREIGN KEY (`last_modified_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_invoicetransaction` | |
-- | |
LOCK TABLES `shoppingcart_invoicetransaction` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_invoicetransaction` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_invoicetransaction` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_order` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_order`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_order` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`currency` varchar(8) NOT NULL, | |
`status` varchar(32) NOT NULL, | |
`purchase_time` datetime(6) DEFAULT NULL, | |
`refunded_time` datetime(6) DEFAULT NULL, | |
`bill_to_first` varchar(64) NOT NULL, | |
`bill_to_last` varchar(64) NOT NULL, | |
`bill_to_street1` varchar(128) NOT NULL, | |
`bill_to_street2` varchar(128) NOT NULL, | |
`bill_to_city` varchar(64) NOT NULL, | |
`bill_to_state` varchar(8) NOT NULL, | |
`bill_to_postalcode` varchar(16) NOT NULL, | |
`bill_to_country` varchar(64) NOT NULL, | |
`bill_to_ccnum` varchar(8) NOT NULL, | |
`bill_to_cardtype` varchar(32) NOT NULL, | |
`processor_reply_dump` longtext NOT NULL, | |
`company_name` varchar(255) DEFAULT NULL, | |
`company_contact_name` varchar(255) DEFAULT NULL, | |
`company_contact_email` varchar(255) DEFAULT NULL, | |
`recipient_name` varchar(255) DEFAULT NULL, | |
`recipient_email` varchar(255) DEFAULT NULL, | |
`customer_reference_number` varchar(63) DEFAULT NULL, | |
`order_type` varchar(32) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_order_user_id_ca2398bc_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `shoppingcart_order_user_id_ca2398bc_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_order` | |
-- | |
LOCK TABLES `shoppingcart_order` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_order` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_order` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_orderitem` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_orderitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_orderitem` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`status` varchar(32) NOT NULL, | |
`qty` int(11) NOT NULL, | |
`unit_cost` decimal(30,2) NOT NULL, | |
`list_price` decimal(30,2) DEFAULT NULL, | |
`line_desc` varchar(1024) NOT NULL, | |
`currency` varchar(8) NOT NULL, | |
`fulfilled_time` datetime(6) DEFAULT NULL, | |
`refund_requested_time` datetime(6) DEFAULT NULL, | |
`service_fee` decimal(30,2) NOT NULL, | |
`report_comments` longtext NOT NULL, | |
`order_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_orderitem_status_f6dfbdae` (`status`), | |
KEY `shoppingcart_orderitem_fulfilled_time_336eded2` (`fulfilled_time`), | |
KEY `shoppingcart_orderitem_refund_requested_time_36e52146` (`refund_requested_time`), | |
KEY `shoppingcart_orderit_order_id_063915e1_fk_shoppingc` (`order_id`), | |
KEY `shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `shoppingcart_orderit_order_id_063915e1_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`), | |
CONSTRAINT `shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_orderitem` | |
-- | |
LOCK TABLES `shoppingcart_orderitem` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_orderitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_orderitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_paidcourseregistration` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_paidcourseregistration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_paidcourseregistration` ( | |
`orderitem_ptr_id` int(11) NOT NULL, | |
`course_id` varchar(128) NOT NULL, | |
`mode` varchar(50) NOT NULL, | |
`course_enrollment_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`orderitem_ptr_id`), | |
KEY `shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c` (`course_enrollment_id`), | |
KEY `shoppingcart_paidcourseregistration_course_id_33b51281` (`course_id`), | |
KEY `shoppingcart_paidcourseregistration_mode_8be64323` (`mode`), | |
CONSTRAINT `shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c` FOREIGN KEY (`course_enrollment_id`) REFERENCES `student_courseenrollment` (`id`), | |
CONSTRAINT `shoppingcart_paidcou_orderitem_ptr_id_00c1dc3c_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_paidcourseregistration` | |
-- | |
LOCK TABLES `shoppingcart_paidcourseregistration` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_paidcourseregistration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_paidcourseregistration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_paidcourseregistrationannotation` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_paidcourseregistrationannotation`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_paidcourseregistrationannotation` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(128) NOT NULL, | |
`annotation` longtext, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_id` (`course_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_paidcourseregistrationannotation` | |
-- | |
LOCK TABLES `shoppingcart_paidcourseregistrationannotation` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_paidcourseregistrationannotation` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_paidcourseregistrationannotation` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `shoppingcart_registrationcoderedemption` | |
-- | |
DROP TABLE IF EXISTS `shoppingcart_registrationcoderedemption`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `shoppingcart_registrationcoderedemption` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`redeemed_at` datetime(6) DEFAULT NULL, | |
`course_enrollment_id` int(11) DEFAULT NULL, | |
`order_id` int(11) DEFAULT NULL, | |
`redeemed_by_id` int(11) NOT NULL, | |
`registration_code_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c` (`course_enrollment_id`), | |
KEY `shoppingcart_registr_order_id_240ef603_fk_shoppingc` (`order_id`), | |
KEY `shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user` (`redeemed_by_id`), | |
KEY `shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc` (`registration_code_id`), | |
CONSTRAINT `shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c` FOREIGN KEY (`course_enrollment_id`) REFERENCES `student_courseenrollment` (`id`), | |
CONSTRAINT `shoppingcart_registr_order_id_240ef603_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`), | |
CONSTRAINT `shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user` FOREIGN KEY (`redeemed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc` FOREIGN KEY (`registration_code_id`) REFERENCES `shoppingcart_courseregistrationcode` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `shoppingcart_registrationcoderedemption` | |
-- | |
LOCK TABLES `shoppingcart_registrationcoderedemption` WRITE; | |
/*!40000 ALTER TABLE `shoppingcart_registrationcoderedemption` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `shoppingcart_registrationcoderedemption` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `site_configuration_siteconfiguration` | |
-- | |
DROP TABLE IF EXISTS `site_configuration_siteconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `site_configuration_siteconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`values` longtext NOT NULL, | |
`site_id` int(11) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `site_id` (`site_id`), | |
CONSTRAINT `site_configuration_s_site_id_84302d1f_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `site_configuration_siteconfiguration` | |
-- | |
LOCK TABLES `site_configuration_siteconfiguration` WRITE; | |
/*!40000 ALTER TABLE `site_configuration_siteconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `site_configuration_siteconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `site_configuration_siteconfigurationhistory` | |
-- | |
DROP TABLE IF EXISTS `site_configuration_siteconfigurationhistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `site_configuration_siteconfigurationhistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`values` longtext NOT NULL, | |
`site_id` int(11) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `site_configuration_s_site_id_272f5c1a_fk_django_si` (`site_id`), | |
CONSTRAINT `site_configuration_s_site_id_272f5c1a_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `site_configuration_siteconfigurationhistory` | |
-- | |
LOCK TABLES `site_configuration_siteconfigurationhistory` WRITE; | |
/*!40000 ALTER TABLE `site_configuration_siteconfigurationhistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `site_configuration_siteconfigurationhistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `social_auth_association` | |
-- | |
DROP TABLE IF EXISTS `social_auth_association`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `social_auth_association` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`server_url` varchar(255) NOT NULL, | |
`handle` varchar(255) NOT NULL, | |
`secret` varchar(255) NOT NULL, | |
`issued` int(11) NOT NULL, | |
`lifetime` int(11) NOT NULL, | |
`assoc_type` varchar(64) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `social_auth_association_server_url_handle_078befa2_uniq` (`server_url`,`handle`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `social_auth_association` | |
-- | |
LOCK TABLES `social_auth_association` WRITE; | |
/*!40000 ALTER TABLE `social_auth_association` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `social_auth_association` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `social_auth_code` | |
-- | |
DROP TABLE IF EXISTS `social_auth_code`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `social_auth_code` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`email` varchar(254) NOT NULL, | |
`code` varchar(32) NOT NULL, | |
`verified` tinyint(1) NOT NULL, | |
`timestamp` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `social_auth_code_email_code_801b2d02_uniq` (`email`,`code`), | |
KEY `social_auth_code_code_a2393167` (`code`), | |
KEY `social_auth_code_timestamp_176b341f` (`timestamp`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `social_auth_code` | |
-- | |
LOCK TABLES `social_auth_code` WRITE; | |
/*!40000 ALTER TABLE `social_auth_code` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `social_auth_code` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `social_auth_nonce` | |
-- | |
DROP TABLE IF EXISTS `social_auth_nonce`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `social_auth_nonce` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`server_url` varchar(255) NOT NULL, | |
`timestamp` int(11) NOT NULL, | |
`salt` varchar(65) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `social_auth_nonce_server_url_timestamp_salt_f6284463_uniq` (`server_url`,`timestamp`,`salt`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `social_auth_nonce` | |
-- | |
LOCK TABLES `social_auth_nonce` WRITE; | |
/*!40000 ALTER TABLE `social_auth_nonce` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `social_auth_nonce` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `social_auth_partial` | |
-- | |
DROP TABLE IF EXISTS `social_auth_partial`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `social_auth_partial` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`token` varchar(32) NOT NULL, | |
`next_step` smallint(5) unsigned NOT NULL, | |
`backend` varchar(32) NOT NULL, | |
`data` longtext NOT NULL, | |
`timestamp` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `social_auth_partial_token_3017fea3` (`token`), | |
KEY `social_auth_partial_timestamp_50f2119f` (`timestamp`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `social_auth_partial` | |
-- | |
LOCK TABLES `social_auth_partial` WRITE; | |
/*!40000 ALTER TABLE `social_auth_partial` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `social_auth_partial` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `social_auth_usersocialauth` | |
-- | |
DROP TABLE IF EXISTS `social_auth_usersocialauth`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `social_auth_usersocialauth` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`provider` varchar(32) NOT NULL, | |
`uid` varchar(255) NOT NULL, | |
`extra_data` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `social_auth_usersocialauth_provider_uid_e6b5e668_uniq` (`provider`,`uid`), | |
KEY `social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `social_auth_usersocialauth` | |
-- | |
LOCK TABLES `social_auth_usersocialauth` WRITE; | |
/*!40000 ALTER TABLE `social_auth_usersocialauth` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `social_auth_usersocialauth` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `splash_splashconfig` | |
-- | |
DROP TABLE IF EXISTS `splash_splashconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `splash_splashconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`cookie_name` longtext NOT NULL, | |
`cookie_allowed_values` longtext NOT NULL, | |
`unaffected_usernames` longtext NOT NULL, | |
`unaffected_url_paths` longtext NOT NULL, | |
`redirect_url` varchar(200) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `splash_splashconfig` | |
-- | |
LOCK TABLES `splash_splashconfig` WRITE; | |
/*!40000 ALTER TABLE `splash_splashconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `splash_splashconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `static_replace_assetbaseurlconfig` | |
-- | |
DROP TABLE IF EXISTS `static_replace_assetbaseurlconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `static_replace_assetbaseurlconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`base_url` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `static_replace_asset_changed_by_id_f592e050_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `static_replace_asset_changed_by_id_f592e050_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `static_replace_assetbaseurlconfig` | |
-- | |
LOCK TABLES `static_replace_assetbaseurlconfig` WRITE; | |
/*!40000 ALTER TABLE `static_replace_assetbaseurlconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `static_replace_assetbaseurlconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `static_replace_assetexcludedextensionsconfig` | |
-- | |
DROP TABLE IF EXISTS `static_replace_assetexcludedextensionsconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `static_replace_assetexcludedextensionsconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`excluded_extensions` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `static_replace_asset_changed_by_id_e58299b3_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `static_replace_asset_changed_by_id_e58299b3_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `static_replace_assetexcludedextensionsconfig` | |
-- | |
LOCK TABLES `static_replace_assetexcludedextensionsconfig` WRITE; | |
/*!40000 ALTER TABLE `static_replace_assetexcludedextensionsconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `static_replace_assetexcludedextensionsconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `status_coursemessage` | |
-- | |
DROP TABLE IF EXISTS `status_coursemessage`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `status_coursemessage` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_key` varchar(255) NOT NULL, | |
`message` longtext, | |
`global_message_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `status_coursemessage_course_key_90c77a2e` (`course_key`), | |
KEY `status_coursemessage_global_message_id_01bbfbe6_fk_status_gl` (`global_message_id`), | |
CONSTRAINT `status_coursemessage_global_message_id_01bbfbe6_fk_status_gl` FOREIGN KEY (`global_message_id`) REFERENCES `status_globalstatusmessage` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `status_coursemessage` | |
-- | |
LOCK TABLES `status_coursemessage` WRITE; | |
/*!40000 ALTER TABLE `status_coursemessage` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `status_coursemessage` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `status_globalstatusmessage` | |
-- | |
DROP TABLE IF EXISTS `status_globalstatusmessage`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `status_globalstatusmessage` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`message` longtext, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `status_globalstatusm_changed_by_id_3c627848_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `status_globalstatusm_changed_by_id_3c627848_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `status_globalstatusmessage` | |
-- | |
LOCK TABLES `status_globalstatusmessage` WRITE; | |
/*!40000 ALTER TABLE `status_globalstatusmessage` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `status_globalstatusmessage` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_anonymoususerid` | |
-- | |
DROP TABLE IF EXISTS `student_anonymoususerid`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_anonymoususerid` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`anonymous_user_id` varchar(32) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `anonymous_user_id` (`anonymous_user_id`), | |
KEY `student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id` (`user_id`), | |
KEY `student_anonymoususerid_course_id_99cc6a18` (`course_id`), | |
CONSTRAINT `student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_anonymoususerid` | |
-- | |
LOCK TABLES `student_anonymoususerid` WRITE; | |
/*!40000 ALTER TABLE `student_anonymoususerid` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_anonymoususerid` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_courseaccessrole` | |
-- | |
DROP TABLE IF EXISTS `student_courseaccessrole`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_courseaccessrole` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`org` varchar(64) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`role` varchar(64) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq` (`user_id`,`org`,`course_id`,`role`), | |
KEY `student_courseaccessrole_org_6d2dbb7a` (`org`), | |
KEY `student_courseaccessrole_course_id_60fb355e` (`course_id`), | |
KEY `student_courseaccessrole_role_1ac888ea` (`role`), | |
CONSTRAINT `student_courseaccessrole_user_id_90cf21fe_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_courseaccessrole` | |
-- | |
LOCK TABLES `student_courseaccessrole` WRITE; | |
/*!40000 ALTER TABLE `student_courseaccessrole` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_courseaccessrole` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_courseenrollment` | |
-- | |
DROP TABLE IF EXISTS `student_courseenrollment`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_courseenrollment` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`created` datetime(6) DEFAULT NULL, | |
`is_active` tinyint(1) NOT NULL, | |
`mode` varchar(100) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_courseenrollment_user_id_course_id_5d34a47f_uniq` (`user_id`,`course_id`), | |
KEY `student_courseenrollment_course_id_a6f93be8` (`course_id`), | |
KEY `student_courseenrollment_created_79829893` (`created`), | |
CONSTRAINT `student_courseenrollment_user_id_4263a8e2_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_courseenrollment` | |
-- | |
LOCK TABLES `student_courseenrollment` WRITE; | |
/*!40000 ALTER TABLE `student_courseenrollment` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_courseenrollment` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_courseenrollmentallowed` | |
-- | |
DROP TABLE IF EXISTS `student_courseenrollmentallowed`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_courseenrollmentallowed` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`email` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`auto_enroll` tinyint(1) NOT NULL, | |
`created` datetime(6) DEFAULT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_courseenrollmentallowed_email_course_id_1e23ed5e_uniq` (`email`,`course_id`), | |
KEY `student_courseenrollmentallowed_email_969706a0` (`email`), | |
KEY `student_courseenrollmentallowed_course_id_67eff667` (`course_id`), | |
KEY `student_courseenrollmentallowed_created_b2066658` (`created`), | |
KEY `student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_courseenrollmentallowed` | |
-- | |
LOCK TABLES `student_courseenrollmentallowed` WRITE; | |
/*!40000 ALTER TABLE `student_courseenrollmentallowed` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_courseenrollmentallowed` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_courseenrollmentattribute` | |
-- | |
DROP TABLE IF EXISTS `student_courseenrollmentattribute`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_courseenrollmentattribute` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`namespace` varchar(255) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`value` varchar(255) NOT NULL, | |
`enrollment_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_courseenroll_enrollment_id_b2173db0_fk_student_c` (`enrollment_id`), | |
CONSTRAINT `student_courseenroll_enrollment_id_b2173db0_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_courseenrollmentattribute` | |
-- | |
LOCK TABLES `student_courseenrollmentattribute` WRITE; | |
/*!40000 ALTER TABLE `student_courseenrollmentattribute` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_courseenrollmentattribute` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_dashboardconfiguration` | |
-- | |
DROP TABLE IF EXISTS `student_dashboardconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_dashboardconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`recent_enrollment_time_delta` int(10) unsigned NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_dashboardcon_changed_by_id_1960484b_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `student_dashboardcon_changed_by_id_1960484b_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_dashboardconfiguration` | |
-- | |
LOCK TABLES `student_dashboardconfiguration` WRITE; | |
/*!40000 ALTER TABLE `student_dashboardconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_dashboardconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_enrollmentrefundconfiguration` | |
-- | |
DROP TABLE IF EXISTS `student_enrollmentrefundconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_enrollmentrefundconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`refund_window_microseconds` bigint(20) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_enrollmentrefundconfiguration` | |
-- | |
LOCK TABLES `student_enrollmentrefundconfiguration` WRITE; | |
/*!40000 ALTER TABLE `student_enrollmentrefundconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_enrollmentrefundconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_entranceexamconfiguration` | |
-- | |
DROP TABLE IF EXISTS `student_entranceexamconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_entranceexamconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_id` varchar(255) NOT NULL, | |
`created` datetime(6) DEFAULT NULL, | |
`updated` datetime(6) NOT NULL, | |
`skip_entrance_exam` tinyint(1) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_entranceexamconf_user_id_course_id_23bbcf9b_uniq` (`user_id`,`course_id`), | |
KEY `student_entranceexamconfiguration_course_id_eca5c3d4` (`course_id`), | |
KEY `student_entranceexamconfiguration_created_27e80637` (`created`), | |
KEY `student_entranceexamconfiguration_updated_d560d552` (`updated`), | |
CONSTRAINT `student_entranceexam_user_id_387a35d6_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_entranceexamconfiguration` | |
-- | |
LOCK TABLES `student_entranceexamconfiguration` WRITE; | |
/*!40000 ALTER TABLE `student_entranceexamconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_entranceexamconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_languageproficiency` | |
-- | |
DROP TABLE IF EXISTS `student_languageproficiency`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_languageproficiency` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` varchar(16) NOT NULL, | |
`user_profile_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_languageproficiency_code_user_profile_id_9aa4e2f5_uniq` (`code`,`user_profile_id`), | |
KEY `student_languageprof_user_profile_id_768cd3eb_fk_auth_user` (`user_profile_id`), | |
CONSTRAINT `student_languageprof_user_profile_id_768cd3eb_fk_auth_user` FOREIGN KEY (`user_profile_id`) REFERENCES `auth_userprofile` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_languageproficiency` | |
-- | |
LOCK TABLES `student_languageproficiency` WRITE; | |
/*!40000 ALTER TABLE `student_languageproficiency` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_languageproficiency` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_linkedinaddtoprofileconfiguration` | |
-- | |
DROP TABLE IF EXISTS `student_linkedinaddtoprofileconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_linkedinaddtoprofileconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`company_identifier` longtext NOT NULL, | |
`dashboard_tracking_code` longtext NOT NULL, | |
`trk_partner_name` varchar(10) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_linkedinaddtoprofileconfiguration` | |
-- | |
LOCK TABLES `student_linkedinaddtoprofileconfiguration` WRITE; | |
/*!40000 ALTER TABLE `student_linkedinaddtoprofileconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_linkedinaddtoprofileconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_loginfailures` | |
-- | |
DROP TABLE IF EXISTS `student_loginfailures`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_loginfailures` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`failure_count` int(11) NOT NULL, | |
`lockout_until` datetime(6) DEFAULT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_loginfailures_user_id_50d85202_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `student_loginfailures_user_id_50d85202_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_loginfailures` | |
-- | |
LOCK TABLES `student_loginfailures` WRITE; | |
/*!40000 ALTER TABLE `student_loginfailures` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_loginfailures` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_logoutviewconfiguration` | |
-- | |
DROP TABLE IF EXISTS `student_logoutviewconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_logoutviewconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_logoutviewco_changed_by_id_a787d3e7_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `student_logoutviewco_changed_by_id_a787d3e7_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_logoutviewconfiguration` | |
-- | |
LOCK TABLES `student_logoutviewconfiguration` WRITE; | |
/*!40000 ALTER TABLE `student_logoutviewconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_logoutviewconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_manualenrollmentaudit` | |
-- | |
DROP TABLE IF EXISTS `student_manualenrollmentaudit`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_manualenrollmentaudit` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`enrolled_email` varchar(255) NOT NULL, | |
`time_stamp` datetime(6) DEFAULT NULL, | |
`state_transition` varchar(255) NOT NULL, | |
`reason` longtext, | |
`enrolled_by_id` int(11) DEFAULT NULL, | |
`enrollment_id` int(11) DEFAULT NULL, | |
`role` varchar(64) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user` (`enrolled_by_id`), | |
KEY `student_manualenroll_enrollment_id_decc94fe_fk_student_c` (`enrollment_id`), | |
KEY `student_manualenrollmentaudit_enrolled_email_47ce6524` (`enrolled_email`), | |
CONSTRAINT `student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user` FOREIGN KEY (`enrolled_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `student_manualenroll_enrollment_id_decc94fe_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_manualenrollmentaudit` | |
-- | |
LOCK TABLES `student_manualenrollmentaudit` WRITE; | |
/*!40000 ALTER TABLE `student_manualenrollmentaudit` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_manualenrollmentaudit` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_passwordhistory` | |
-- | |
DROP TABLE IF EXISTS `student_passwordhistory`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_passwordhistory` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`password` varchar(128) NOT NULL, | |
`time_set` datetime(6) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_passwordhistory_user_id_e9318327_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `student_passwordhistory_user_id_e9318327_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_passwordhistory` | |
-- | |
LOCK TABLES `student_passwordhistory` WRITE; | |
/*!40000 ALTER TABLE `student_passwordhistory` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_passwordhistory` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_pendingemailchange` | |
-- | |
DROP TABLE IF EXISTS `student_pendingemailchange`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_pendingemailchange` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`new_email` varchar(255) NOT NULL, | |
`activation_key` varchar(32) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `activation_key` (`activation_key`), | |
UNIQUE KEY `user_id` (`user_id`), | |
KEY `student_pendingemailchange_new_email_6887bdea` (`new_email`), | |
CONSTRAINT `student_pendingemailchange_user_id_8f2778c5_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_pendingemailchange` | |
-- | |
LOCK TABLES `student_pendingemailchange` WRITE; | |
/*!40000 ALTER TABLE `student_pendingemailchange` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_pendingemailchange` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_pendingnamechange` | |
-- | |
DROP TABLE IF EXISTS `student_pendingnamechange`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_pendingnamechange` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`new_name` varchar(255) NOT NULL, | |
`rationale` varchar(1024) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
CONSTRAINT `student_pendingnamechange_user_id_e2cd8b70_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_pendingnamechange` | |
-- | |
LOCK TABLES `student_pendingnamechange` WRITE; | |
/*!40000 ALTER TABLE `student_pendingnamechange` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_pendingnamechange` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_registrationcookieconfiguration` | |
-- | |
DROP TABLE IF EXISTS `student_registrationcookieconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_registrationcookieconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`utm_cookie_name` varchar(255) NOT NULL, | |
`affiliate_cookie_name` varchar(255) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_registration_changed_by_id_52ac88b0_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `student_registration_changed_by_id_52ac88b0_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_registrationcookieconfiguration` | |
-- | |
LOCK TABLES `student_registrationcookieconfiguration` WRITE; | |
/*!40000 ALTER TABLE `student_registrationcookieconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_registrationcookieconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_sociallink` | |
-- | |
DROP TABLE IF EXISTS `student_sociallink`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_sociallink` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`platform` varchar(30) NOT NULL, | |
`social_link` varchar(100) NOT NULL, | |
`user_profile_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_sociallink_user_profile_id_19f54475_fk_auth_user` (`user_profile_id`), | |
CONSTRAINT `student_sociallink_user_profile_id_19f54475_fk_auth_user` FOREIGN KEY (`user_profile_id`) REFERENCES `auth_userprofile` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_sociallink` | |
-- | |
LOCK TABLES `student_sociallink` WRITE; | |
/*!40000 ALTER TABLE `student_sociallink` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_sociallink` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_userattribute` | |
-- | |
DROP TABLE IF EXISTS `student_userattribute`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_userattribute` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`value` varchar(255) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_userattribute_user_id_name_70e18f46_uniq` (`user_id`,`name`), | |
KEY `student_userattribute_name_a55155e3` (`name`), | |
CONSTRAINT `student_userattribute_user_id_19c01f5e_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_userattribute` | |
-- | |
LOCK TABLES `student_userattribute` WRITE; | |
/*!40000 ALTER TABLE `student_userattribute` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_userattribute` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_usersignupsource` | |
-- | |
DROP TABLE IF EXISTS `student_usersignupsource`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_usersignupsource` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`site` varchar(255) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_usersignupsource_user_id_4979dd6e_fk_auth_user_id` (`user_id`), | |
KEY `student_usersignupsource_site_beb4d383` (`site`), | |
CONSTRAINT `student_usersignupsource_user_id_4979dd6e_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_usersignupsource` | |
-- | |
LOCK TABLES `student_usersignupsource` WRITE; | |
/*!40000 ALTER TABLE `student_usersignupsource` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_usersignupsource` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_userstanding` | |
-- | |
DROP TABLE IF EXISTS `student_userstanding`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_userstanding` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`account_status` varchar(31) NOT NULL, | |
`standing_last_changed_at` datetime(6) NOT NULL, | |
`changed_by_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
KEY `student_userstanding_changed_by_id_469252b4_fk_auth_user_id` (`changed_by_id`), | |
CONSTRAINT `student_userstanding_changed_by_id_469252b4_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `student_userstanding_user_id_00b147e5_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_userstanding` | |
-- | |
LOCK TABLES `student_userstanding` WRITE; | |
/*!40000 ALTER TABLE `student_userstanding` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_userstanding` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_usertestgroup` | |
-- | |
DROP TABLE IF EXISTS `student_usertestgroup`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_usertestgroup` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(32) NOT NULL, | |
`description` longtext NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `student_usertestgroup_name_94f48ddb` (`name`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_usertestgroup` | |
-- | |
LOCK TABLES `student_usertestgroup` WRITE; | |
/*!40000 ALTER TABLE `student_usertestgroup` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_usertestgroup` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `student_usertestgroup_users` | |
-- | |
DROP TABLE IF EXISTS `student_usertestgroup_users`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `student_usertestgroup_users` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`usertestgroup_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_usertestgroup_us_usertestgroup_id_user_id_2bbf095a_uniq` (`usertestgroup_id`,`user_id`), | |
KEY `student_usertestgroup_users_user_id_81b93062_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `student_usertestgrou_usertestgroup_id_a9097958_fk_student_u` FOREIGN KEY (`usertestgroup_id`) REFERENCES `student_usertestgroup` (`id`), | |
CONSTRAINT `student_usertestgroup_users_user_id_81b93062_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `student_usertestgroup_users` | |
-- | |
LOCK TABLES `student_usertestgroup_users` WRITE; | |
/*!40000 ALTER TABLE `student_usertestgroup_users` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `student_usertestgroup_users` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `submissions_score` | |
-- | |
DROP TABLE IF EXISTS `submissions_score`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `submissions_score` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`points_earned` int(10) unsigned NOT NULL, | |
`points_possible` int(10) unsigned NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`reset` tinyint(1) NOT NULL, | |
`student_item_id` int(11) NOT NULL, | |
`submission_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `submissions_score_created_at_b65f0390` (`created_at`), | |
KEY `submissions_score_student_item_id_de4f5954_fk_submissio` (`student_item_id`), | |
KEY `submissions_score_submission_id_ba095829_fk_submissio` (`submission_id`), | |
CONSTRAINT `submissions_score_student_item_id_de4f5954_fk_submissio` FOREIGN KEY (`student_item_id`) REFERENCES `submissions_studentitem` (`id`), | |
CONSTRAINT `submissions_score_submission_id_ba095829_fk_submissio` FOREIGN KEY (`submission_id`) REFERENCES `submissions_submission` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `submissions_score` | |
-- | |
LOCK TABLES `submissions_score` WRITE; | |
/*!40000 ALTER TABLE `submissions_score` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `submissions_score` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `submissions_scoreannotation` | |
-- | |
DROP TABLE IF EXISTS `submissions_scoreannotation`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `submissions_scoreannotation` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`annotation_type` varchar(255) NOT NULL, | |
`creator` varchar(255) NOT NULL, | |
`reason` longtext NOT NULL, | |
`score_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `submissions_scoreann_score_id_2dda6e02_fk_submissio` (`score_id`), | |
KEY `submissions_scoreannotation_annotation_type_117a2607` (`annotation_type`), | |
KEY `submissions_scoreannotation_creator_5cc126cc` (`creator`), | |
CONSTRAINT `submissions_scoreann_score_id_2dda6e02_fk_submissio` FOREIGN KEY (`score_id`) REFERENCES `submissions_score` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `submissions_scoreannotation` | |
-- | |
LOCK TABLES `submissions_scoreannotation` WRITE; | |
/*!40000 ALTER TABLE `submissions_scoreannotation` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `submissions_scoreannotation` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `submissions_scoresummary` | |
-- | |
DROP TABLE IF EXISTS `submissions_scoresummary`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `submissions_scoresummary` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`highest_id` int(11) NOT NULL, | |
`latest_id` int(11) NOT NULL, | |
`student_item_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `student_item_id` (`student_item_id`), | |
KEY `submissions_scoresum_highest_id_3efe897d_fk_submissio` (`highest_id`), | |
KEY `submissions_scoresum_latest_id_dd8a17bb_fk_submissio` (`latest_id`), | |
CONSTRAINT `submissions_scoresum_highest_id_3efe897d_fk_submissio` FOREIGN KEY (`highest_id`) REFERENCES `submissions_score` (`id`), | |
CONSTRAINT `submissions_scoresum_latest_id_dd8a17bb_fk_submissio` FOREIGN KEY (`latest_id`) REFERENCES `submissions_score` (`id`), | |
CONSTRAINT `submissions_scoresum_student_item_id_35f8ef06_fk_submissio` FOREIGN KEY (`student_item_id`) REFERENCES `submissions_studentitem` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `submissions_scoresummary` | |
-- | |
LOCK TABLES `submissions_scoresummary` WRITE; | |
/*!40000 ALTER TABLE `submissions_scoresummary` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `submissions_scoresummary` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `submissions_studentitem` | |
-- | |
DROP TABLE IF EXISTS `submissions_studentitem`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `submissions_studentitem` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`student_id` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`item_id` varchar(255) NOT NULL, | |
`item_type` varchar(100) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `submissions_studentitem_course_id_student_id_ite_5b02ecf8_uniq` (`course_id`,`student_id`,`item_id`), | |
KEY `submissions_studentitem_student_id_8e72bcd9` (`student_id`), | |
KEY `submissions_studentitem_course_id_05ee1efe` (`course_id`), | |
KEY `submissions_studentitem_item_id_6c409784` (`item_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `submissions_studentitem` | |
-- | |
LOCK TABLES `submissions_studentitem` WRITE; | |
/*!40000 ALTER TABLE `submissions_studentitem` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `submissions_studentitem` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `submissions_submission` | |
-- | |
DROP TABLE IF EXISTS `submissions_submission`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `submissions_submission` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`uuid` char(32) NOT NULL, | |
`attempt_number` int(10) unsigned NOT NULL, | |
`submitted_at` datetime(6) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`raw_answer` longtext NOT NULL, | |
`student_item_id` int(11) NOT NULL, | |
`status` varchar(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `submissions_submissi_student_item_id_9d087470_fk_submissio` (`student_item_id`), | |
KEY `submissions_submission_uuid_210428ab` (`uuid`), | |
KEY `submissions_submission_submitted_at_9653124d` (`submitted_at`), | |
KEY `submissions_submission_created_at_01c4bf22` (`created_at`), | |
CONSTRAINT `submissions_submissi_student_item_id_9d087470_fk_submissio` FOREIGN KEY (`student_item_id`) REFERENCES `submissions_studentitem` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `submissions_submission` | |
-- | |
LOCK TABLES `submissions_submission` WRITE; | |
/*!40000 ALTER TABLE `submissions_submission` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `submissions_submission` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `survey_surveyanswer` | |
-- | |
DROP TABLE IF EXISTS `survey_surveyanswer`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `survey_surveyanswer` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`field_name` varchar(255) NOT NULL, | |
`field_value` varchar(1024) NOT NULL, | |
`course_key` varchar(255) DEFAULT NULL, | |
`form_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `survey_surveyanswer_field_name_7123dc3d` (`field_name`), | |
KEY `survey_surveyanswer_course_key_497ade68` (`course_key`), | |
KEY `survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id` (`form_id`), | |
KEY `survey_surveyanswer_user_id_4c028d25_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id` FOREIGN KEY (`form_id`) REFERENCES `survey_surveyform` (`id`), | |
CONSTRAINT `survey_surveyanswer_user_id_4c028d25_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `survey_surveyanswer` | |
-- | |
LOCK TABLES `survey_surveyanswer` WRITE; | |
/*!40000 ALTER TABLE `survey_surveyanswer` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `survey_surveyanswer` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `survey_surveyform` | |
-- | |
DROP TABLE IF EXISTS `survey_surveyform`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `survey_surveyform` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`form` longtext NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `survey_surveyform` | |
-- | |
LOCK TABLES `survey_surveyform` WRITE; | |
/*!40000 ALTER TABLE `survey_surveyform` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `survey_surveyform` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `tagging_tagavailablevalues` | |
-- | |
DROP TABLE IF EXISTS `tagging_tagavailablevalues`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `tagging_tagavailablevalues` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`value` varchar(255) NOT NULL, | |
`category_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `tagging_tagavailable_category_id_9cc60a44_fk_tagging_t` (`category_id`), | |
CONSTRAINT `tagging_tagavailable_category_id_9cc60a44_fk_tagging_t` FOREIGN KEY (`category_id`) REFERENCES `tagging_tagcategories` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `tagging_tagavailablevalues` | |
-- | |
LOCK TABLES `tagging_tagavailablevalues` WRITE; | |
/*!40000 ALTER TABLE `tagging_tagavailablevalues` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `tagging_tagavailablevalues` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `tagging_tagcategories` | |
-- | |
DROP TABLE IF EXISTS `tagging_tagcategories`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `tagging_tagcategories` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`title` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `tagging_tagcategories` | |
-- | |
LOCK TABLES `tagging_tagcategories` WRITE; | |
/*!40000 ALTER TABLE `tagging_tagcategories` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `tagging_tagcategories` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `teams_courseteam` | |
-- | |
DROP TABLE IF EXISTS `teams_courseteam`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `teams_courseteam` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`team_id` varchar(255) NOT NULL, | |
`discussion_topic_id` varchar(255) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`topic_id` varchar(255) NOT NULL, | |
`date_created` datetime(6) NOT NULL, | |
`description` varchar(300) NOT NULL, | |
`country` varchar(2) NOT NULL, | |
`language` varchar(16) NOT NULL, | |
`last_activity_at` datetime(6) NOT NULL, | |
`team_size` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `team_id` (`team_id`), | |
UNIQUE KEY `discussion_topic_id` (`discussion_topic_id`), | |
KEY `teams_courseteam_name_3bef5f8c` (`name`), | |
KEY `teams_courseteam_course_id_1e7dbede` (`course_id`), | |
KEY `teams_courseteam_topic_id_4d4f5d0d` (`topic_id`), | |
KEY `teams_courseteam_last_activity_at_376db5d3` (`last_activity_at`), | |
KEY `teams_courseteam_team_size_d264574e` (`team_size`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `teams_courseteam` | |
-- | |
LOCK TABLES `teams_courseteam` WRITE; | |
/*!40000 ALTER TABLE `teams_courseteam` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `teams_courseteam` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `teams_courseteammembership` | |
-- | |
DROP TABLE IF EXISTS `teams_courseteammembership`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `teams_courseteammembership` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`date_joined` datetime(6) NOT NULL, | |
`last_activity_at` datetime(6) NOT NULL, | |
`team_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `teams_courseteammembership_user_id_team_id_aa45a20c_uniq` (`user_id`,`team_id`), | |
KEY `teams_courseteammemb_team_id_b021eccd_fk_teams_cou` (`team_id`), | |
CONSTRAINT `teams_courseteammemb_team_id_b021eccd_fk_teams_cou` FOREIGN KEY (`team_id`) REFERENCES `teams_courseteam` (`id`), | |
CONSTRAINT `teams_courseteammembership_user_id_18f9ff5d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `teams_courseteammembership` | |
-- | |
LOCK TABLES `teams_courseteammembership` WRITE; | |
/*!40000 ALTER TABLE `teams_courseteammembership` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `teams_courseteammembership` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `theming_sitetheme` | |
-- | |
DROP TABLE IF EXISTS `theming_sitetheme`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `theming_sitetheme` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`theme_dir_name` varchar(255) NOT NULL, | |
`site_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `theming_sitetheme_site_id_fe93d039_fk_django_site_id` (`site_id`), | |
CONSTRAINT `theming_sitetheme_site_id_fe93d039_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `theming_sitetheme` | |
-- | |
LOCK TABLES `theming_sitetheme` WRITE; | |
/*!40000 ALTER TABLE `theming_sitetheme` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `theming_sitetheme` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `third_party_auth_ltiproviderconfig` | |
-- | |
DROP TABLE IF EXISTS `third_party_auth_ltiproviderconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `third_party_auth_ltiproviderconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`name` varchar(50) NOT NULL, | |
`skip_registration_form` tinyint(1) NOT NULL, | |
`skip_email_verification` tinyint(1) NOT NULL, | |
`lti_consumer_key` varchar(255) NOT NULL, | |
`lti_hostname` varchar(255) NOT NULL, | |
`lti_consumer_secret` varchar(255) NOT NULL, | |
`lti_max_timestamp_age` int(11) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`visible` tinyint(1) NOT NULL, | |
`site_id` int(11) NOT NULL, | |
`max_session_length` int(10) unsigned DEFAULT NULL, | |
`skip_hinted_login_dialog` tinyint(1) NOT NULL, | |
`send_to_registration_first` tinyint(1) NOT NULL, | |
`sync_learner_profile_data` tinyint(1) NOT NULL, | |
`send_welcome_email` tinyint(1) NOT NULL, | |
`slug` varchar(30) NOT NULL, | |
`enable_sso_id_verification` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user` (`changed_by_id`), | |
KEY `third_party_auth_ltiproviderconfig_lti_hostname_540ce676` (`lti_hostname`), | |
KEY `third_party_auth_lti_site_id_c8442a80_fk_django_si` (`site_id`), | |
KEY `third_party_auth_ltiproviderconfig_slug_9cd23a79` (`slug`), | |
CONSTRAINT `third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `third_party_auth_lti_site_id_c8442a80_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `third_party_auth_ltiproviderconfig` | |
-- | |
LOCK TABLES `third_party_auth_ltiproviderconfig` WRITE; | |
/*!40000 ALTER TABLE `third_party_auth_ltiproviderconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `third_party_auth_ltiproviderconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `third_party_auth_oauth2providerconfig` | |
-- | |
DROP TABLE IF EXISTS `third_party_auth_oauth2providerconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `third_party_auth_oauth2providerconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`icon_class` varchar(50) NOT NULL, | |
`name` varchar(50) NOT NULL, | |
`secondary` tinyint(1) NOT NULL, | |
`skip_registration_form` tinyint(1) NOT NULL, | |
`skip_email_verification` tinyint(1) NOT NULL, | |
`backend_name` varchar(50) NOT NULL, | |
`key` longtext NOT NULL, | |
`secret` longtext NOT NULL, | |
`other_settings` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`icon_image` varchar(100) NOT NULL, | |
`visible` tinyint(1) NOT NULL, | |
`site_id` int(11) NOT NULL, | |
`max_session_length` int(10) unsigned DEFAULT NULL, | |
`skip_hinted_login_dialog` tinyint(1) NOT NULL, | |
`send_to_registration_first` tinyint(1) NOT NULL, | |
`sync_learner_profile_data` tinyint(1) NOT NULL, | |
`send_welcome_email` tinyint(1) NOT NULL, | |
`slug` varchar(30) NOT NULL, | |
`enable_sso_id_verification` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `third_party_auth_oau_changed_by_id_55219296_fk_auth_user` (`changed_by_id`), | |
KEY `third_party_auth_oauth2providerconfig_backend_name_0c14d294` (`backend_name`), | |
KEY `third_party_auth_oau_site_id_a4ae3e66_fk_django_si` (`site_id`), | |
KEY `third_party_auth_oauth2providerconfig_slug_226038d8` (`slug`), | |
CONSTRAINT `third_party_auth_oau_changed_by_id_55219296_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `third_party_auth_oau_site_id_a4ae3e66_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `third_party_auth_oauth2providerconfig` | |
-- | |
LOCK TABLES `third_party_auth_oauth2providerconfig` WRITE; | |
/*!40000 ALTER TABLE `third_party_auth_oauth2providerconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `third_party_auth_oauth2providerconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `third_party_auth_providerapipermissions` | |
-- | |
DROP TABLE IF EXISTS `third_party_auth_providerapipermissions`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `third_party_auth_providerapipermissions` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`provider_id` varchar(255) NOT NULL, | |
`client_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `third_party_auth_pro_client_id_c28afa10_fk_oauth2_cl` (`client_id`), | |
CONSTRAINT `third_party_auth_pro_client_id_c28afa10_fk_oauth2_cl` FOREIGN KEY (`client_id`) REFERENCES `oauth2_client` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `third_party_auth_providerapipermissions` | |
-- | |
LOCK TABLES `third_party_auth_providerapipermissions` WRITE; | |
/*!40000 ALTER TABLE `third_party_auth_providerapipermissions` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `third_party_auth_providerapipermissions` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `third_party_auth_samlconfiguration` | |
-- | |
DROP TABLE IF EXISTS `third_party_auth_samlconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `third_party_auth_samlconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`private_key` longtext NOT NULL, | |
`public_key` longtext NOT NULL, | |
`entity_id` varchar(255) NOT NULL, | |
`org_info_str` longtext NOT NULL, | |
`other_config_str` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`site_id` int(11) NOT NULL, | |
`slug` varchar(30) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user` (`changed_by_id`), | |
KEY `third_party_auth_sam_site_id_8fab01ee_fk_django_si` (`site_id`), | |
KEY `third_party_auth_samlconfiguration_slug_f9008e26` (`slug`), | |
CONSTRAINT `third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `third_party_auth_sam_site_id_8fab01ee_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `third_party_auth_samlconfiguration` | |
-- | |
LOCK TABLES `third_party_auth_samlconfiguration` WRITE; | |
/*!40000 ALTER TABLE `third_party_auth_samlconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `third_party_auth_samlconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `third_party_auth_samlproviderconfig` | |
-- | |
DROP TABLE IF EXISTS `third_party_auth_samlproviderconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `third_party_auth_samlproviderconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`icon_class` varchar(50) NOT NULL, | |
`name` varchar(50) NOT NULL, | |
`secondary` tinyint(1) NOT NULL, | |
`skip_registration_form` tinyint(1) NOT NULL, | |
`skip_email_verification` tinyint(1) NOT NULL, | |
`backend_name` varchar(50) NOT NULL, | |
`entity_id` varchar(255) NOT NULL, | |
`metadata_source` varchar(255) NOT NULL, | |
`attr_user_permanent_id` varchar(128) NOT NULL, | |
`attr_full_name` varchar(128) NOT NULL, | |
`attr_first_name` varchar(128) NOT NULL, | |
`attr_last_name` varchar(128) NOT NULL, | |
`attr_username` varchar(128) NOT NULL, | |
`attr_email` varchar(128) NOT NULL, | |
`other_settings` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`icon_image` varchar(100) NOT NULL, | |
`debug_mode` tinyint(1) NOT NULL, | |
`visible` tinyint(1) NOT NULL, | |
`site_id` int(11) NOT NULL, | |
`automatic_refresh_enabled` tinyint(1) NOT NULL, | |
`identity_provider_type` varchar(128) NOT NULL, | |
`max_session_length` int(10) unsigned DEFAULT NULL, | |
`skip_hinted_login_dialog` tinyint(1) NOT NULL, | |
`send_to_registration_first` tinyint(1) NOT NULL, | |
`sync_learner_profile_data` tinyint(1) NOT NULL, | |
`archived` tinyint(1) NOT NULL, | |
`saml_configuration_id` int(11) DEFAULT NULL, | |
`send_welcome_email` tinyint(1) NOT NULL, | |
`slug` varchar(30) NOT NULL, | |
`enable_sso_id_verification` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user` (`changed_by_id`), | |
KEY `third_party_auth_sam_site_id_b7e2af73_fk_django_si` (`site_id`), | |
KEY `third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par` (`saml_configuration_id`), | |
KEY `third_party_auth_samlproviderconfig_slug_95883dea` (`slug`), | |
CONSTRAINT `third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par` FOREIGN KEY (`saml_configuration_id`) REFERENCES `third_party_auth_samlconfiguration` (`id`), | |
CONSTRAINT `third_party_auth_sam_site_id_b7e2af73_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `third_party_auth_samlproviderconfig` | |
-- | |
LOCK TABLES `third_party_auth_samlproviderconfig` WRITE; | |
/*!40000 ALTER TABLE `third_party_auth_samlproviderconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `third_party_auth_samlproviderconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `third_party_auth_samlproviderdata` | |
-- | |
DROP TABLE IF EXISTS `third_party_auth_samlproviderdata`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `third_party_auth_samlproviderdata` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`fetched_at` datetime(6) NOT NULL, | |
`expires_at` datetime(6) DEFAULT NULL, | |
`entity_id` varchar(255) NOT NULL, | |
`sso_url` varchar(200) NOT NULL, | |
`public_key` longtext NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `third_party_auth_samlproviderdata_fetched_at_2286ac32` (`fetched_at`), | |
KEY `third_party_auth_samlproviderdata_expires_at_eaf594c7` (`expires_at`), | |
KEY `third_party_auth_samlproviderdata_entity_id_b163c6fc` (`entity_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `third_party_auth_samlproviderdata` | |
-- | |
LOCK TABLES `third_party_auth_samlproviderdata` WRITE; | |
/*!40000 ALTER TABLE `third_party_auth_samlproviderdata` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `third_party_auth_samlproviderdata` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `track_trackinglog` | |
-- | |
DROP TABLE IF EXISTS `track_trackinglog`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `track_trackinglog` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`dtcreated` datetime(6) NOT NULL, | |
`username` varchar(32) NOT NULL, | |
`ip` varchar(32) NOT NULL, | |
`event_source` varchar(32) NOT NULL, | |
`event_type` varchar(512) NOT NULL, | |
`event` longtext NOT NULL, | |
`agent` varchar(256) NOT NULL, | |
`page` varchar(512) DEFAULT NULL, | |
`time` datetime(6) NOT NULL, | |
`host` varchar(64) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `track_trackinglog` | |
-- | |
LOCK TABLES `track_trackinglog` WRITE; | |
/*!40000 ALTER TABLE `track_trackinglog` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `track_trackinglog` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_api_retirementstate` | |
-- | |
DROP TABLE IF EXISTS `user_api_retirementstate`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_api_retirementstate` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`state_name` varchar(30) NOT NULL, | |
`state_execution_order` smallint(6) NOT NULL, | |
`is_dead_end_state` tinyint(1) NOT NULL, | |
`required` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `state_name` (`state_name`), | |
UNIQUE KEY `state_execution_order` (`state_execution_order`), | |
KEY `user_api_retirementstate_is_dead_end_state_62eaf9b7` (`is_dead_end_state`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_api_retirementstate` | |
-- | |
LOCK TABLES `user_api_retirementstate` WRITE; | |
/*!40000 ALTER TABLE `user_api_retirementstate` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_api_retirementstate` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_api_usercoursetag` | |
-- | |
DROP TABLE IF EXISTS `user_api_usercoursetag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_api_usercoursetag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`key` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`value` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_api_usercoursetag_user_id_course_id_key_d73150ab_uniq` (`user_id`,`course_id`,`key`), | |
KEY `user_api_usercoursetag_key_d6420575` (`key`), | |
KEY `user_api_usercoursetag_course_id_a336d583` (`course_id`), | |
CONSTRAINT `user_api_usercoursetag_user_id_106a4cbc_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_api_usercoursetag` | |
-- | |
LOCK TABLES `user_api_usercoursetag` WRITE; | |
/*!40000 ALTER TABLE `user_api_usercoursetag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_api_usercoursetag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_api_userorgtag` | |
-- | |
DROP TABLE IF EXISTS `user_api_userorgtag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_api_userorgtag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`key` varchar(255) NOT NULL, | |
`org` varchar(255) NOT NULL, | |
`value` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_api_userorgtag_user_id_org_key_d4df9ac1_uniq` (`user_id`,`org`,`key`), | |
KEY `user_api_userorgtag_key_b1f2bafe` (`key`), | |
KEY `user_api_userorgtag_org_41caa15c` (`org`), | |
CONSTRAINT `user_api_userorgtag_user_id_cc0d415d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_api_userorgtag` | |
-- | |
LOCK TABLES `user_api_userorgtag` WRITE; | |
/*!40000 ALTER TABLE `user_api_userorgtag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_api_userorgtag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_api_userpreference` | |
-- | |
DROP TABLE IF EXISTS `user_api_userpreference`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_api_userpreference` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`key` varchar(255) NOT NULL, | |
`value` longtext NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_api_userpreference_user_id_key_17924c0d_uniq` (`user_id`,`key`), | |
KEY `user_api_userpreference_key_9c8a8f6b` (`key`), | |
CONSTRAINT `user_api_userpreference_user_id_68f8a34b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_api_userpreference` | |
-- | |
LOCK TABLES `user_api_userpreference` WRITE; | |
/*!40000 ALTER TABLE `user_api_userpreference` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_api_userpreference` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_api_userretirementpartnerreportingstatus` | |
-- | |
DROP TABLE IF EXISTS `user_api_userretirementpartnerreportingstatus`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_api_userretirementpartnerreportingstatus` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`original_username` varchar(150) NOT NULL, | |
`original_email` varchar(254) NOT NULL, | |
`original_name` varchar(255) NOT NULL, | |
`is_being_processed` tinyint(1) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
KEY `user_api_userretirementpart_original_username_6bf5d3d1` (`original_username`), | |
KEY `user_api_userretirementpart_original_email_aaab0bc9` (`original_email`), | |
KEY `user_api_userretirementpart_original_name_9aedd7f0` (`original_name`), | |
CONSTRAINT `user_api_userretirem_user_id_272c8f78_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_api_userretirementpartnerreportingstatus` | |
-- | |
LOCK TABLES `user_api_userretirementpartnerreportingstatus` WRITE; | |
/*!40000 ALTER TABLE `user_api_userretirementpartnerreportingstatus` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_api_userretirementpartnerreportingstatus` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_api_userretirementrequest` | |
-- | |
DROP TABLE IF EXISTS `user_api_userretirementrequest`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_api_userretirementrequest` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
CONSTRAINT `user_api_userretirementrequest_user_id_7f7ca22f_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_api_userretirementrequest` | |
-- | |
LOCK TABLES `user_api_userretirementrequest` WRITE; | |
/*!40000 ALTER TABLE `user_api_userretirementrequest` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_api_userretirementrequest` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_api_userretirementstatus` | |
-- | |
DROP TABLE IF EXISTS `user_api_userretirementstatus`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_api_userretirementstatus` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`original_username` varchar(150) NOT NULL, | |
`original_email` varchar(254) NOT NULL, | |
`original_name` varchar(255) NOT NULL, | |
`retired_username` varchar(150) NOT NULL, | |
`retired_email` varchar(254) NOT NULL, | |
`responses` longtext NOT NULL, | |
`current_state_id` int(11) NOT NULL, | |
`last_state_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
KEY `user_api_userretirem_current_state_id_e37bb094_fk_user_api_` (`current_state_id`), | |
KEY `user_api_userretirem_last_state_id_359e74cd_fk_user_api_` (`last_state_id`), | |
KEY `user_api_userretirementstatus_original_username_fa5d4a21` (`original_username`), | |
KEY `user_api_userretirementstatus_original_email_a7203bff` (`original_email`), | |
KEY `user_api_userretirementstatus_original_name_17c2846b` (`original_name`), | |
KEY `user_api_userretirementstatus_retired_username_52067a53` (`retired_username`), | |
KEY `user_api_userretirementstatus_retired_email_ee7c1579` (`retired_email`), | |
CONSTRAINT `user_api_userretirem_current_state_id_e37bb094_fk_user_api_` FOREIGN KEY (`current_state_id`) REFERENCES `user_api_retirementstate` (`id`), | |
CONSTRAINT `user_api_userretirem_last_state_id_359e74cd_fk_user_api_` FOREIGN KEY (`last_state_id`) REFERENCES `user_api_retirementstate` (`id`), | |
CONSTRAINT `user_api_userretirementstatus_user_id_aca4dc7b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_api_userretirementstatus` | |
-- | |
LOCK TABLES `user_api_userretirementstatus` WRITE; | |
/*!40000 ALTER TABLE `user_api_userretirementstatus` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_api_userretirementstatus` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_tasks_usertaskartifact` | |
-- | |
DROP TABLE IF EXISTS `user_tasks_usertaskartifact`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_tasks_usertaskartifact` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`file` varchar(100) DEFAULT NULL, | |
`url` varchar(200) NOT NULL, | |
`text` longtext NOT NULL, | |
`status_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `uuid` (`uuid`), | |
KEY `user_tasks_usertaska_status_id_641f31be_fk_user_task` (`status_id`), | |
CONSTRAINT `user_tasks_usertaska_status_id_641f31be_fk_user_task` FOREIGN KEY (`status_id`) REFERENCES `user_tasks_usertaskstatus` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_tasks_usertaskartifact` | |
-- | |
LOCK TABLES `user_tasks_usertaskartifact` WRITE; | |
/*!40000 ALTER TABLE `user_tasks_usertaskartifact` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_tasks_usertaskartifact` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `user_tasks_usertaskstatus` | |
-- | |
DROP TABLE IF EXISTS `user_tasks_usertaskstatus`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `user_tasks_usertaskstatus` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`task_id` varchar(128) NOT NULL, | |
`is_container` tinyint(1) NOT NULL, | |
`task_class` varchar(128) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`state` varchar(128) NOT NULL, | |
`completed_steps` smallint(5) unsigned NOT NULL, | |
`total_steps` smallint(5) unsigned NOT NULL, | |
`attempts` smallint(5) unsigned NOT NULL, | |
`parent_id` int(11) DEFAULT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `uuid` (`uuid`), | |
UNIQUE KEY `task_id` (`task_id`), | |
KEY `user_tasks_usertasks_parent_id_5009f727_fk_user_task` (`parent_id`), | |
KEY `user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `user_tasks_usertasks_parent_id_5009f727_fk_user_task` FOREIGN KEY (`parent_id`) REFERENCES `user_tasks_usertaskstatus` (`id`), | |
CONSTRAINT `user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `user_tasks_usertaskstatus` | |
-- | |
LOCK TABLES `user_tasks_usertaskstatus` WRITE; | |
/*!40000 ALTER TABLE `user_tasks_usertaskstatus` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `user_tasks_usertaskstatus` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `util_ratelimitconfiguration` | |
-- | |
DROP TABLE IF EXISTS `util_ratelimitconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `util_ratelimitconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `util_ratelimitconfiguration` | |
-- | |
LOCK TABLES `util_ratelimitconfiguration` WRITE; | |
/*!40000 ALTER TABLE `util_ratelimitconfiguration` DISABLE KEYS */; | |
INSERT INTO `util_ratelimitconfiguration` VALUES (1,'2018-09-11 20:02:38.080743',1,NULL); | |
/*!40000 ALTER TABLE `util_ratelimitconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `verified_track_content_migrateverifiedtrackcohortssetting` | |
-- | |
DROP TABLE IF EXISTS `verified_track_content_migrateverifiedtrackcohortssetting`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `verified_track_content_migrateverifiedtrackcohortssetting` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`old_course_key` varchar(255) NOT NULL, | |
`rerun_course_key` varchar(255) NOT NULL, | |
`audit_cohort_names` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `verified_track_conte_changed_by_id_29944bff_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `verified_track_conte_changed_by_id_29944bff_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `verified_track_content_migrateverifiedtrackcohortssetting` | |
-- | |
LOCK TABLES `verified_track_content_migrateverifiedtrackcohortssetting` WRITE; | |
/*!40000 ALTER TABLE `verified_track_content_migrateverifiedtrackcohortssetting` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `verified_track_content_migrateverifiedtrackcohortssetting` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `verified_track_content_verifiedtrackcohortedcourse` | |
-- | |
DROP TABLE IF EXISTS `verified_track_content_verifiedtrackcohortedcourse`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `verified_track_content_verifiedtrackcohortedcourse` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`course_key` varchar(255) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`verified_cohort_name` varchar(100) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_key` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `verified_track_content_verifiedtrackcohortedcourse` | |
-- | |
LOCK TABLES `verified_track_content_verifiedtrackcohortedcourse` WRITE; | |
/*!40000 ALTER TABLE `verified_track_content_verifiedtrackcohortedcourse` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `verified_track_content_verifiedtrackcohortedcourse` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `verify_student_manualverification` | |
-- | |
DROP TABLE IF EXISTS `verify_student_manualverification`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `verify_student_manualverification` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`status` varchar(100) NOT NULL, | |
`status_changed` datetime(6) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`updated_at` datetime(6) NOT NULL, | |
`reason` varchar(255) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `verify_student_manua_user_id_f38b72b4_fk_auth_user` (`user_id`), | |
KEY `verify_student_manualverification_created_at_e4e3731a` (`created_at`), | |
KEY `verify_student_manualverification_updated_at_1a350690` (`updated_at`), | |
CONSTRAINT `verify_student_manua_user_id_f38b72b4_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `verify_student_manualverification` | |
-- | |
LOCK TABLES `verify_student_manualverification` WRITE; | |
/*!40000 ALTER TABLE `verify_student_manualverification` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `verify_student_manualverification` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `verify_student_softwaresecurephotoverification` | |
-- | |
DROP TABLE IF EXISTS `verify_student_softwaresecurephotoverification`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `verify_student_softwaresecurephotoverification` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`status` varchar(100) NOT NULL, | |
`status_changed` datetime(6) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`face_image_url` varchar(255) NOT NULL, | |
`photo_id_image_url` varchar(255) NOT NULL, | |
`receipt_id` varchar(255) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`updated_at` datetime(6) NOT NULL, | |
`display` tinyint(1) NOT NULL, | |
`submitted_at` datetime(6) DEFAULT NULL, | |
`reviewing_service` varchar(255) NOT NULL, | |
`error_msg` longtext NOT NULL, | |
`error_code` varchar(50) NOT NULL, | |
`photo_id_key` longtext NOT NULL, | |
`copy_id_photo_from_id` int(11) DEFAULT NULL, | |
`reviewing_user_id` int(11) DEFAULT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st` (`copy_id_photo_from_id`), | |
KEY `verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user` (`reviewing_user_id`), | |
KEY `verify_student_softw_user_id_66ca4f6d_fk_auth_user` (`user_id`), | |
KEY `verify_student_softwaresecu_receipt_id_2160ce88` (`receipt_id`), | |
KEY `verify_student_softwaresecu_created_at_566f779f` (`created_at`), | |
KEY `verify_student_softwaresecu_updated_at_8f5cf2d7` (`updated_at`), | |
KEY `verify_student_softwaresecurephotoverification_display_287287f8` (`display`), | |
KEY `verify_student_softwaresecu_submitted_at_f3d5cd03` (`submitted_at`), | |
CONSTRAINT `verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st` FOREIGN KEY (`copy_id_photo_from_id`) REFERENCES `verify_student_softwaresecurephotoverification` (`id`), | |
CONSTRAINT `verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user` FOREIGN KEY (`reviewing_user_id`) REFERENCES `auth_user` (`id`), | |
CONSTRAINT `verify_student_softw_user_id_66ca4f6d_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `verify_student_softwaresecurephotoverification` | |
-- | |
LOCK TABLES `verify_student_softwaresecurephotoverification` WRITE; | |
/*!40000 ALTER TABLE `verify_student_softwaresecurephotoverification` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `verify_student_softwaresecurephotoverification` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `verify_student_ssoverification` | |
-- | |
DROP TABLE IF EXISTS `verify_student_ssoverification`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `verify_student_ssoverification` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`status` varchar(100) NOT NULL, | |
`status_changed` datetime(6) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`updated_at` datetime(6) NOT NULL, | |
`identity_provider_type` varchar(100) NOT NULL, | |
`identity_provider_slug` varchar(30) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id` (`user_id`), | |
KEY `verify_student_ssoverification_created_at_6381e5a4` (`created_at`), | |
KEY `verify_student_ssoverification_updated_at_9d6cc952` (`updated_at`), | |
KEY `verify_student_ssoverification_identity_provider_slug_56c53eb6` (`identity_provider_slug`), | |
CONSTRAINT `verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `verify_student_ssoverification` | |
-- | |
LOCK TABLES `verify_student_ssoverification` WRITE; | |
/*!40000 ALTER TABLE `verify_student_ssoverification` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `verify_student_ssoverification` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `verify_student_verificationdeadline` | |
-- | |
DROP TABLE IF EXISTS `verify_student_verificationdeadline`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `verify_student_verificationdeadline` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`course_key` varchar(255) NOT NULL, | |
`deadline` datetime(6) NOT NULL, | |
`deadline_is_explicit` tinyint(1) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `course_key` (`course_key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `verify_student_verificationdeadline` | |
-- | |
LOCK TABLES `verify_student_verificationdeadline` WRITE; | |
/*!40000 ALTER TABLE `verify_student_verificationdeadline` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `verify_student_verificationdeadline` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_config_coursehlsplaybackenabledflag` | |
-- | |
DROP TABLE IF EXISTS `video_config_coursehlsplaybackenabledflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_config_coursehlsplaybackenabledflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_config_courseh_changed_by_id_fa268d53_fk_auth_user` (`changed_by_id`), | |
KEY `video_config_coursehlsplaybackenabledflag_course_id_c0fcaead` (`course_id`), | |
CONSTRAINT `video_config_courseh_changed_by_id_fa268d53_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_config_coursehlsplaybackenabledflag` | |
-- | |
LOCK TABLES `video_config_coursehlsplaybackenabledflag` WRITE; | |
/*!40000 ALTER TABLE `video_config_coursehlsplaybackenabledflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_config_coursehlsplaybackenabledflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_config_coursevideotranscriptenabledflag` | |
-- | |
DROP TABLE IF EXISTS `video_config_coursevideotranscriptenabledflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_config_coursevideotranscriptenabledflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user` (`changed_by_id`), | |
KEY `video_config_coursevideotranscriptenabledflag_course_id_fcfacf5b` (`course_id`), | |
CONSTRAINT `video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_config_coursevideotranscriptenabledflag` | |
-- | |
LOCK TABLES `video_config_coursevideotranscriptenabledflag` WRITE; | |
/*!40000 ALTER TABLE `video_config_coursevideotranscriptenabledflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_config_coursevideotranscriptenabledflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_config_hlsplaybackenabledflag` | |
-- | |
DROP TABLE IF EXISTS `video_config_hlsplaybackenabledflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_config_hlsplaybackenabledflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`enabled_for_all_courses` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_config_hlsplaybackenabledflag` | |
-- | |
LOCK TABLES `video_config_hlsplaybackenabledflag` WRITE; | |
/*!40000 ALTER TABLE `video_config_hlsplaybackenabledflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_config_hlsplaybackenabledflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_config_transcriptmigrationsetting` | |
-- | |
DROP TABLE IF EXISTS `video_config_transcriptmigrationsetting`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_config_transcriptmigrationsetting` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`force_update` tinyint(1) NOT NULL, | |
`commit` tinyint(1) NOT NULL, | |
`all_courses` tinyint(1) NOT NULL, | |
`course_ids` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`command_run` int(10) unsigned NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_config_transcr_changed_by_id_4c7817bd_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `video_config_transcr_changed_by_id_4c7817bd_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_config_transcriptmigrationsetting` | |
-- | |
LOCK TABLES `video_config_transcriptmigrationsetting` WRITE; | |
/*!40000 ALTER TABLE `video_config_transcriptmigrationsetting` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_config_transcriptmigrationsetting` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_config_videotranscriptenabledflag` | |
-- | |
DROP TABLE IF EXISTS `video_config_videotranscriptenabledflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_config_videotranscriptenabledflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`enabled_for_all_courses` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_config_videotranscriptenabledflag` | |
-- | |
LOCK TABLES `video_config_videotranscriptenabledflag` WRITE; | |
/*!40000 ALTER TABLE `video_config_videotranscriptenabledflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_config_videotranscriptenabledflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_pipeline_coursevideouploadsenabledbydefault` | |
-- | |
DROP TABLE IF EXISTS `video_pipeline_coursevideouploadsenabledbydefault`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_pipeline_coursevideouploadsenabledbydefault` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user` (`changed_by_id`), | |
KEY `video_pipeline_coursevideou_course_id_9fd1b18b` (`course_id`), | |
CONSTRAINT `video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_pipeline_coursevideouploadsenabledbydefault` | |
-- | |
LOCK TABLES `video_pipeline_coursevideouploadsenabledbydefault` WRITE; | |
/*!40000 ALTER TABLE `video_pipeline_coursevideouploadsenabledbydefault` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_pipeline_coursevideouploadsenabledbydefault` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_pipeline_videopipelineintegration` | |
-- | |
DROP TABLE IF EXISTS `video_pipeline_videopipelineintegration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_pipeline_videopipelineintegration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`api_url` varchar(200) NOT NULL, | |
`service_username` varchar(100) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
`client_name` varchar(100) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_pipeline_video_changed_by_id_b169f329_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `video_pipeline_video_changed_by_id_b169f329_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_pipeline_videopipelineintegration` | |
-- | |
LOCK TABLES `video_pipeline_videopipelineintegration` WRITE; | |
/*!40000 ALTER TABLE `video_pipeline_videopipelineintegration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_pipeline_videopipelineintegration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `video_pipeline_videouploadsenabledbydefault` | |
-- | |
DROP TABLE IF EXISTS `video_pipeline_videouploadsenabledbydefault`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `video_pipeline_videouploadsenabledbydefault` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`enabled_for_all_courses` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `video_pipeline_video_changed_by_id_3d066822_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `video_pipeline_video_changed_by_id_3d066822_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `video_pipeline_videouploadsenabledbydefault` | |
-- | |
LOCK TABLES `video_pipeline_videouploadsenabledbydefault` WRITE; | |
/*!40000 ALTER TABLE `video_pipeline_videouploadsenabledbydefault` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `video_pipeline_videouploadsenabledbydefault` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `waffle_flag` | |
-- | |
DROP TABLE IF EXISTS `waffle_flag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `waffle_flag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(100) NOT NULL, | |
`everyone` tinyint(1) DEFAULT NULL, | |
`percent` decimal(3,1) DEFAULT NULL, | |
`testing` tinyint(1) NOT NULL, | |
`superusers` tinyint(1) NOT NULL, | |
`staff` tinyint(1) NOT NULL, | |
`authenticated` tinyint(1) NOT NULL, | |
`languages` longtext NOT NULL, | |
`rollout` tinyint(1) NOT NULL, | |
`note` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`), | |
KEY `waffle_flag_created_4a6e8cef` (`created`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `waffle_flag` | |
-- | |
LOCK TABLES `waffle_flag` WRITE; | |
/*!40000 ALTER TABLE `waffle_flag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `waffle_flag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `waffle_flag_groups` | |
-- | |
DROP TABLE IF EXISTS `waffle_flag_groups`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `waffle_flag_groups` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`flag_id` int(11) NOT NULL, | |
`group_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `waffle_flag_groups_flag_id_group_id_8ba0c71b_uniq` (`flag_id`,`group_id`), | |
KEY `waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id` (`group_id`), | |
CONSTRAINT `waffle_flag_groups_flag_id_c11c0c05_fk_waffle_flag_id` FOREIGN KEY (`flag_id`) REFERENCES `waffle_flag` (`id`), | |
CONSTRAINT `waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `waffle_flag_groups` | |
-- | |
LOCK TABLES `waffle_flag_groups` WRITE; | |
/*!40000 ALTER TABLE `waffle_flag_groups` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `waffle_flag_groups` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `waffle_flag_users` | |
-- | |
DROP TABLE IF EXISTS `waffle_flag_users`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `waffle_flag_users` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`flag_id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `waffle_flag_users_flag_id_user_id_b46f76b0_uniq` (`flag_id`,`user_id`), | |
KEY `waffle_flag_users_user_id_8026df9b_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `waffle_flag_users_flag_id_833c37b0_fk_waffle_flag_id` FOREIGN KEY (`flag_id`) REFERENCES `waffle_flag` (`id`), | |
CONSTRAINT `waffle_flag_users_user_id_8026df9b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `waffle_flag_users` | |
-- | |
LOCK TABLES `waffle_flag_users` WRITE; | |
/*!40000 ALTER TABLE `waffle_flag_users` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `waffle_flag_users` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `waffle_sample` | |
-- | |
DROP TABLE IF EXISTS `waffle_sample`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `waffle_sample` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(100) NOT NULL, | |
`percent` decimal(4,1) NOT NULL, | |
`note` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`), | |
KEY `waffle_sample_created_76198bd5` (`created`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `waffle_sample` | |
-- | |
LOCK TABLES `waffle_sample` WRITE; | |
/*!40000 ALTER TABLE `waffle_sample` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `waffle_sample` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `waffle_switch` | |
-- | |
DROP TABLE IF EXISTS `waffle_switch`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `waffle_switch` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(100) NOT NULL, | |
`active` tinyint(1) NOT NULL, | |
`note` longtext NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `name` (`name`), | |
KEY `waffle_switch_created_c004e77e` (`created`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `waffle_switch` | |
-- | |
LOCK TABLES `waffle_switch` WRITE; | |
/*!40000 ALTER TABLE `waffle_switch` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `waffle_switch` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `waffle_utils_waffleflagcourseoverridemodel` | |
-- | |
DROP TABLE IF EXISTS `waffle_utils_waffleflagcourseoverridemodel`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `waffle_utils_waffleflagcourseoverridemodel` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`waffle_flag` varchar(255) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`override_choice` varchar(3) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user` (`changed_by_id`), | |
KEY `waffle_utils_waffleflagcourseoverridemodel_waffle_flag_d261aad1` (`waffle_flag`), | |
KEY `waffle_utils_waffleflagcourseoverridemodel_course_id_e94a9fc3` (`course_id`), | |
CONSTRAINT `waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `waffle_utils_waffleflagcourseoverridemodel` | |
-- | |
LOCK TABLES `waffle_utils_waffleflagcourseoverridemodel` WRITE; | |
/*!40000 ALTER TABLE `waffle_utils_waffleflagcourseoverridemodel` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `waffle_utils_waffleflagcourseoverridemodel` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_article` | |
-- | |
DROP TABLE IF EXISTS `wiki_article`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_article` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`group_read` tinyint(1) NOT NULL, | |
`group_write` tinyint(1) NOT NULL, | |
`other_read` tinyint(1) NOT NULL, | |
`other_write` tinyint(1) NOT NULL, | |
`current_revision_id` int(11) DEFAULT NULL, | |
`group_id` int(11) DEFAULT NULL, | |
`owner_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `current_revision_id` (`current_revision_id`), | |
KEY `wiki_article_group_id_bf035c83_fk_auth_group_id` (`group_id`), | |
KEY `wiki_article_owner_id_956bc94a_fk_auth_user_id` (`owner_id`), | |
CONSTRAINT `wiki_article_current_revision_id_fc83ea0a_fk_wiki_arti` FOREIGN KEY (`current_revision_id`) REFERENCES `wiki_articlerevision` (`id`), | |
CONSTRAINT `wiki_article_group_id_bf035c83_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`), | |
CONSTRAINT `wiki_article_owner_id_956bc94a_fk_auth_user_id` FOREIGN KEY (`owner_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_article` | |
-- | |
LOCK TABLES `wiki_article` WRITE; | |
/*!40000 ALTER TABLE `wiki_article` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_article` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_articleforobject` | |
-- | |
DROP TABLE IF EXISTS `wiki_articleforobject`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_articleforobject` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`object_id` int(10) unsigned NOT NULL, | |
`is_mptt` tinyint(1) NOT NULL, | |
`article_id` int(11) NOT NULL, | |
`content_type_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `wiki_articleforobject_content_type_id_object_id_046be756_uniq` (`content_type_id`,`object_id`), | |
KEY `wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id` (`article_id`), | |
CONSTRAINT `wiki_articleforobjec_content_type_id_ba569059_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`), | |
CONSTRAINT `wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_articleforobject` | |
-- | |
LOCK TABLES `wiki_articleforobject` WRITE; | |
/*!40000 ALTER TABLE `wiki_articleforobject` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_articleforobject` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_articleplugin` | |
-- | |
DROP TABLE IF EXISTS `wiki_articleplugin`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_articleplugin` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`deleted` tinyint(1) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`article_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id` (`article_id`), | |
CONSTRAINT `wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_articleplugin` | |
-- | |
LOCK TABLES `wiki_articleplugin` WRITE; | |
/*!40000 ALTER TABLE `wiki_articleplugin` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_articleplugin` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_articlerevision` | |
-- | |
DROP TABLE IF EXISTS `wiki_articlerevision`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_articlerevision` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`revision_number` int(11) NOT NULL, | |
`user_message` longtext NOT NULL, | |
`automatic_log` longtext NOT NULL, | |
`ip_address` char(39) DEFAULT NULL, | |
`modified` datetime(6) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`deleted` tinyint(1) NOT NULL, | |
`locked` tinyint(1) NOT NULL, | |
`content` longtext NOT NULL, | |
`title` varchar(512) NOT NULL, | |
`article_id` int(11) NOT NULL, | |
`previous_revision_id` int(11) DEFAULT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `wiki_articlerevision_article_id_revision_number_5bcd5334_uniq` (`article_id`,`revision_number`), | |
KEY `wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti` (`previous_revision_id`), | |
KEY `wiki_articlerevision_user_id_c687e4de_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `wiki_articlerevision_article_id_e0fb2474_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`), | |
CONSTRAINT `wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti` FOREIGN KEY (`previous_revision_id`) REFERENCES `wiki_articlerevision` (`id`), | |
CONSTRAINT `wiki_articlerevision_user_id_c687e4de_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_articlerevision` | |
-- | |
LOCK TABLES `wiki_articlerevision` WRITE; | |
/*!40000 ALTER TABLE `wiki_articlerevision` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_articlerevision` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_reusableplugin` | |
-- | |
DROP TABLE IF EXISTS `wiki_reusableplugin`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_reusableplugin` ( | |
`articleplugin_ptr_id` int(11) NOT NULL, | |
PRIMARY KEY (`articleplugin_ptr_id`), | |
CONSTRAINT `wiki_reusableplugin_articleplugin_ptr_id_c1737239_fk_wiki_arti` FOREIGN KEY (`articleplugin_ptr_id`) REFERENCES `wiki_articleplugin` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_reusableplugin` | |
-- | |
LOCK TABLES `wiki_reusableplugin` WRITE; | |
/*!40000 ALTER TABLE `wiki_reusableplugin` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_reusableplugin` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_reusableplugin_articles` | |
-- | |
DROP TABLE IF EXISTS `wiki_reusableplugin_articles`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_reusableplugin_articles` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`reusableplugin_id` int(11) NOT NULL, | |
`article_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `wiki_reusableplugin_arti_reusableplugin_id_articl_302a7a01_uniq` (`reusableplugin_id`,`article_id`), | |
KEY `wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti` (`article_id`), | |
CONSTRAINT `wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`), | |
CONSTRAINT `wiki_reusableplugin__reusableplugin_id_52618a1c_fk_wiki_reus` FOREIGN KEY (`reusableplugin_id`) REFERENCES `wiki_reusableplugin` (`articleplugin_ptr_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_reusableplugin_articles` | |
-- | |
LOCK TABLES `wiki_reusableplugin_articles` WRITE; | |
/*!40000 ALTER TABLE `wiki_reusableplugin_articles` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_reusableplugin_articles` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_revisionplugin` | |
-- | |
DROP TABLE IF EXISTS `wiki_revisionplugin`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_revisionplugin` ( | |
`articleplugin_ptr_id` int(11) NOT NULL, | |
`current_revision_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`articleplugin_ptr_id`), | |
UNIQUE KEY `current_revision_id` (`current_revision_id`), | |
CONSTRAINT `wiki_revisionplugin_articleplugin_ptr_id_95c295f2_fk_wiki_arti` FOREIGN KEY (`articleplugin_ptr_id`) REFERENCES `wiki_articleplugin` (`id`), | |
CONSTRAINT `wiki_revisionplugin_current_revision_id_46514536_fk_wiki_revi` FOREIGN KEY (`current_revision_id`) REFERENCES `wiki_revisionpluginrevision` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_revisionplugin` | |
-- | |
LOCK TABLES `wiki_revisionplugin` WRITE; | |
/*!40000 ALTER TABLE `wiki_revisionplugin` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_revisionplugin` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_revisionpluginrevision` | |
-- | |
DROP TABLE IF EXISTS `wiki_revisionpluginrevision`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_revisionpluginrevision` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`revision_number` int(11) NOT NULL, | |
`user_message` longtext NOT NULL, | |
`automatic_log` longtext NOT NULL, | |
`ip_address` char(39) DEFAULT NULL, | |
`modified` datetime(6) NOT NULL, | |
`created` datetime(6) NOT NULL, | |
`deleted` tinyint(1) NOT NULL, | |
`locked` tinyint(1) NOT NULL, | |
`plugin_id` int(11) NOT NULL, | |
`previous_revision_id` int(11) DEFAULT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi` (`plugin_id`), | |
KEY `wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi` (`previous_revision_id`), | |
KEY `wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id` (`user_id`), | |
CONSTRAINT `wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi` FOREIGN KEY (`plugin_id`) REFERENCES `wiki_revisionplugin` (`articleplugin_ptr_id`), | |
CONSTRAINT `wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi` FOREIGN KEY (`previous_revision_id`) REFERENCES `wiki_revisionpluginrevision` (`id`), | |
CONSTRAINT `wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_revisionpluginrevision` | |
-- | |
LOCK TABLES `wiki_revisionpluginrevision` WRITE; | |
/*!40000 ALTER TABLE `wiki_revisionpluginrevision` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_revisionpluginrevision` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_simpleplugin` | |
-- | |
DROP TABLE IF EXISTS `wiki_simpleplugin`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_simpleplugin` ( | |
`articleplugin_ptr_id` int(11) NOT NULL, | |
`article_revision_id` int(11) NOT NULL, | |
PRIMARY KEY (`articleplugin_ptr_id`), | |
KEY `wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti` (`article_revision_id`), | |
CONSTRAINT `wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti` FOREIGN KEY (`article_revision_id`) REFERENCES `wiki_articlerevision` (`id`), | |
CONSTRAINT `wiki_simpleplugin_articleplugin_ptr_id_2b99b828_fk_wiki_arti` FOREIGN KEY (`articleplugin_ptr_id`) REFERENCES `wiki_articleplugin` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_simpleplugin` | |
-- | |
LOCK TABLES `wiki_simpleplugin` WRITE; | |
/*!40000 ALTER TABLE `wiki_simpleplugin` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_simpleplugin` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `wiki_urlpath` | |
-- | |
DROP TABLE IF EXISTS `wiki_urlpath`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `wiki_urlpath` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`slug` varchar(255) DEFAULT NULL, | |
`lft` int(10) unsigned NOT NULL, | |
`rght` int(10) unsigned NOT NULL, | |
`tree_id` int(10) unsigned NOT NULL, | |
`level` int(10) unsigned NOT NULL, | |
`article_id` int(11) NOT NULL, | |
`parent_id` int(11) DEFAULT NULL, | |
`site_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `wiki_urlpath_site_id_parent_id_slug_e4942e5d_uniq` (`site_id`,`parent_id`,`slug`), | |
KEY `wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id` (`article_id`), | |
KEY `wiki_urlpath_slug_39d212eb` (`slug`), | |
KEY `wiki_urlpath_lft_46bfd227` (`lft`), | |
KEY `wiki_urlpath_rght_186fc98e` (`rght`), | |
KEY `wiki_urlpath_tree_id_090b475d` (`tree_id`), | |
KEY `wiki_urlpath_level_57f17cfd` (`level`), | |
KEY `wiki_urlpath_parent_id_a6e675ac` (`parent_id`), | |
CONSTRAINT `wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`), | |
CONSTRAINT `wiki_urlpath_parent_id_a6e675ac_fk_wiki_urlpath_id` FOREIGN KEY (`parent_id`) REFERENCES `wiki_urlpath` (`id`), | |
CONSTRAINT `wiki_urlpath_site_id_319be912_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `wiki_urlpath` | |
-- | |
LOCK TABLES `wiki_urlpath` WRITE; | |
/*!40000 ALTER TABLE `wiki_urlpath` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `wiki_urlpath` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `workflow_assessmentworkflow` | |
-- | |
DROP TABLE IF EXISTS `workflow_assessmentworkflow`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `workflow_assessmentworkflow` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime(6) NOT NULL, | |
`modified` datetime(6) NOT NULL, | |
`status` varchar(100) NOT NULL, | |
`status_changed` datetime(6) NOT NULL, | |
`submission_uuid` varchar(36) NOT NULL, | |
`uuid` char(32) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`item_id` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `submission_uuid` (`submission_uuid`), | |
UNIQUE KEY `uuid` (`uuid`), | |
KEY `workflow_assessmentworkflow_course_id_8c2d171b` (`course_id`), | |
KEY `workflow_assessmentworkflow_item_id_3ad0d291` (`item_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `workflow_assessmentworkflow` | |
-- | |
LOCK TABLES `workflow_assessmentworkflow` WRITE; | |
/*!40000 ALTER TABLE `workflow_assessmentworkflow` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `workflow_assessmentworkflow` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `workflow_assessmentworkflowcancellation` | |
-- | |
DROP TABLE IF EXISTS `workflow_assessmentworkflowcancellation`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `workflow_assessmentworkflowcancellation` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`comments` longtext NOT NULL, | |
`cancelled_by_id` varchar(40) NOT NULL, | |
`created_at` datetime(6) NOT NULL, | |
`workflow_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `workflow_assessmentw_workflow_id_5e534711_fk_workflow_` (`workflow_id`), | |
KEY `workflow_assessmentworkflowcancellation_cancelled_by_id_8467736a` (`cancelled_by_id`), | |
KEY `workflow_assessmentworkflowcancellation_created_at_9da54d83` (`created_at`), | |
CONSTRAINT `workflow_assessmentw_workflow_id_5e534711_fk_workflow_` FOREIGN KEY (`workflow_id`) REFERENCES `workflow_assessmentworkflow` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `workflow_assessmentworkflowcancellation` | |
-- | |
LOCK TABLES `workflow_assessmentworkflowcancellation` WRITE; | |
/*!40000 ALTER TABLE `workflow_assessmentworkflowcancellation` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `workflow_assessmentworkflowcancellation` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `workflow_assessmentworkflowstep` | |
-- | |
DROP TABLE IF EXISTS `workflow_assessmentworkflowstep`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `workflow_assessmentworkflowstep` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(20) NOT NULL, | |
`submitter_completed_at` datetime(6) DEFAULT NULL, | |
`assessment_completed_at` datetime(6) DEFAULT NULL, | |
`order_num` int(10) unsigned NOT NULL, | |
`workflow_id` int(11) NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_` (`workflow_id`), | |
CONSTRAINT `workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_` FOREIGN KEY (`workflow_id`) REFERENCES `workflow_assessmentworkflow` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `workflow_assessmentworkflowstep` | |
-- | |
LOCK TABLES `workflow_assessmentworkflowstep` WRITE; | |
/*!40000 ALTER TABLE `workflow_assessmentworkflowstep` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `workflow_assessmentworkflowstep` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `xblock_config_courseeditltifieldsenabledflag` | |
-- | |
DROP TABLE IF EXISTS `xblock_config_courseeditltifieldsenabledflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `xblock_config_courseeditltifieldsenabledflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`course_id` varchar(255) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `xblock_config_course_changed_by_id_09761e15_fk_auth_user` (`changed_by_id`), | |
KEY `xblock_config_courseeditltifieldsenabledflag_course_id_4f2393b4` (`course_id`), | |
CONSTRAINT `xblock_config_course_changed_by_id_09761e15_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `xblock_config_courseeditltifieldsenabledflag` | |
-- | |
LOCK TABLES `xblock_config_courseeditltifieldsenabledflag` WRITE; | |
/*!40000 ALTER TABLE `xblock_config_courseeditltifieldsenabledflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `xblock_config_courseeditltifieldsenabledflag` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `xblock_config_studioconfig` | |
-- | |
DROP TABLE IF EXISTS `xblock_config_studioconfig`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `xblock_config_studioconfig` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`disabled_blocks` longtext NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `xblock_config_studioconfig` | |
-- | |
LOCK TABLES `xblock_config_studioconfig` WRITE; | |
/*!40000 ALTER TABLE `xblock_config_studioconfig` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `xblock_config_studioconfig` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `xblock_django_xblockconfiguration` | |
-- | |
DROP TABLE IF EXISTS `xblock_django_xblockconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `xblock_django_xblockconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`deprecated` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user` (`changed_by_id`), | |
KEY `xblock_django_xblockconfiguration_name_9596c362` (`name`), | |
CONSTRAINT `xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `xblock_django_xblockconfiguration` | |
-- | |
LOCK TABLES `xblock_django_xblockconfiguration` WRITE; | |
/*!40000 ALTER TABLE `xblock_django_xblockconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `xblock_django_xblockconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `xblock_django_xblockstudioconfiguration` | |
-- | |
DROP TABLE IF EXISTS `xblock_django_xblockstudioconfiguration`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `xblock_django_xblockstudioconfiguration` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`template` varchar(255) NOT NULL, | |
`support_level` varchar(2) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `xblock_django_xblock_changed_by_id_641b0905_fk_auth_user` (`changed_by_id`), | |
KEY `xblock_django_xblockstudioconfiguration_name_1450bfa3` (`name`), | |
CONSTRAINT `xblock_django_xblock_changed_by_id_641b0905_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `xblock_django_xblockstudioconfiguration` | |
-- | |
LOCK TABLES `xblock_django_xblockstudioconfiguration` WRITE; | |
/*!40000 ALTER TABLE `xblock_django_xblockstudioconfiguration` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `xblock_django_xblockstudioconfiguration` ENABLE KEYS */; | |
UNLOCK TABLES; | |
-- | |
-- Table structure for table `xblock_django_xblockstudioconfigurationflag` | |
-- | |
DROP TABLE IF EXISTS `xblock_django_xblockstudioconfigurationflag`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `xblock_django_xblockstudioconfigurationflag` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`change_date` datetime(6) NOT NULL, | |
`enabled` tinyint(1) NOT NULL, | |
`changed_by_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user` (`changed_by_id`), | |
CONSTRAINT `xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Dumping data for table `xblock_django_xblockstudioconfigurationflag` | |
-- | |
LOCK TABLES `xblock_django_xblockstudioconfigurationflag` WRITE; | |
/*!40000 ALTER TABLE `xblock_django_xblockstudioconfigurationflag` DISABLE KEYS */; | |
/*!40000 ALTER TABLE `xblock_django_xblockstudioconfigurationflag` 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 2018-09-11 20:22:22 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment