Open edX数据结构Mysql edxapp
Posted 刘元涛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Open edX数据结构Mysql edxapp相关的知识,希望对你有一定的参考价值。
原文出处:http://wiki.edustack.org/doku.php?id=edx:edxapp%E6%95%B0%E6%8D%AE%E5%BA%93%E7%BB%93%E6%9E%84
CREATE DATABASE IF NOT EXISTS `edxapp` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `edxapp`;
-- mysql dump 10.13 Distrib 5.6.24, for osx10.8 (x86_64)
--
-- Host: localhost Database: edxapp
-- ------------------------------------------------------
-- Server version 5.6.24-2+deb.sury.org~precise+2
/*!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 `assessment_aiclassifier`
--
DROP TABLE IF EXISTS `assessment_aiclassifier`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_aiclassifier` (a
`id` int(11) NOT NULL AUTO_INCREMENT,
`classifier_set_id` int(11) NOT NULL,
`criterion_id` int(11) NOT NULL,
`classifier_data` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
KEY `assessment_aiclassifier_714175dc` (`classifier_set_id`),
KEY `assessment_aiclassifier_a36470e4` (`criterion_id`),
CONSTRAINT `classifier_set_id_refs_id_f80cbf6` FOREIGN KEY (`classifier_set_id`) REFERENCES `assessment_aiclassifierset` (`id`),
CONSTRAINT `criterion_id_refs_id_e6ab97f2` FOREIGN KEY (`criterion_id`) REFERENCES `assessment_criterion` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_aiclassifier`
--
LOCK TABLES `assessment_aiclassifier` WRITE;
/*!40000 ALTER TABLE `assessment_aiclassifier` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_aiclassifier` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_aiclassifierset`
--
DROP TABLE IF EXISTS `assessment_aiclassifierset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_aiclassifierset` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rubric_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`algorithm_id` varchar(128) NOT NULL,
`course_id` varchar(40) NOT NULL,
`item_id` varchar(128) NOT NULL,
PRIMARY KEY (`id`),
KEY `assessment_aiclassifierset_27cb9807` (`rubric_id`),
KEY `assessment_aiclassifierset_3b1c9c31` (`created_at`),
KEY `assessment_aiclassifierset_53012c1e` (`algorithm_id`),
KEY `assessment_aiclassifierset_ff48d8e5` (`course_id`),
KEY `assessment_aiclassifierset_67b70d25` (`item_id`),
CONSTRAINT `rubric_id_refs_id_c037b8e4` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_aiclassifierset`
--
LOCK TABLES `assessment_aiclassifierset` WRITE;
/*!40000 ALTER TABLE `assessment_aiclassifierset` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_aiclassifierset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_aigradingworkflow`
--
DROP TABLE IF EXISTS `assessment_aigradingworkflow`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_aigradingworkflow` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(36) NOT NULL,
`scheduled_at` datetime NOT NULL,
`completed_at` datetime DEFAULT NULL,
`submission_uuid` varchar(128) NOT NULL,
`classifier_set_id` int(11) DEFAULT NULL,
`algorithm_id` varchar(128) NOT NULL,
`rubric_id` int(11) NOT NULL,
`assessment_id` int(11) DEFAULT NULL,
`student_id` varchar(40) NOT NULL,
`item_id` varchar(128) NOT NULL,
`course_id` varchar(40) NOT NULL,
`essay_text` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `assessment_aigradingworkflow_uuid_492e936265ecbfd2_uniq` (`uuid`),
KEY `assessment_aigradingworkflow_2bbc74ae` (`uuid`),
KEY `assessment_aigradingworkflow_4bacaa90` (`scheduled_at`),
KEY `assessment_aigradingworkflow_a2fd3af6` (`completed_at`),
KEY `assessment_aigradingworkflow_39d020e6` (`submission_uuid`),
KEY `assessment_aigradingworkflow_714175dc` (`classifier_set_id`),
KEY `assessment_aigradingworkflow_53012c1e` (`algorithm_id`),
KEY `assessment_aigradingworkflow_27cb9807` (`rubric_id`),
KEY `assessment_aigradingworkflow_c168f2dc` (`assessment_id`),
KEY `assessment_aigradingworkflow_42ff452e` (`student_id`),
KEY `assessment_aigradingworkflow_67b70d25` (`item_id`),
KEY `assessment_aigradingworkflow_ff48d8e5` (`course_id`),
CONSTRAINT `assessment_id_refs_id_1d8478e7` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`),
CONSTRAINT `classifier_set_id_refs_id_1e9046d1` FOREIGN KEY (`classifier_set_id`) REFERENCES `assessment_aiclassifierset` (`id`),
CONSTRAINT `rubric_id_refs_id_dc2a0464` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_aigradingworkflow`
--
LOCK TABLES `assessment_aigradingworkflow` WRITE;
/*!40000 ALTER TABLE `assessment_aigradingworkflow` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_aigradingworkflow` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_aitrainingworkflow`
--
DROP TABLE IF EXISTS `assessment_aitrainingworkflow`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_aitrainingworkflow` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(36) NOT NULL,
`algorithm_id` varchar(128) NOT NULL,
`classifier_set_id` int(11) DEFAULT NULL,
`scheduled_at` datetime NOT NULL,
`completed_at` datetime DEFAULT NULL,
`item_id` varchar(128) NOT NULL,
`course_id` varchar(40) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `assessment_aitrainingworkflow_uuid_284fdaa93019f8ef_uniq` (`uuid`),
KEY `assessment_aitrainingworkflow_2bbc74ae` (`uuid`),
KEY `assessment_aitrainingworkflow_53012c1e` (`algorithm_id`),
KEY `assessment_aitrainingworkflow_714175dc` (`classifier_set_id`),
KEY `assessment_aitrainingworkflow_4bacaa90` (`scheduled_at`),
KEY `assessment_aitrainingworkflow_a2fd3af6` (`completed_at`),
KEY `assessment_aitrainingworkflow_67b70d25` (`item_id`),
KEY `assessment_aitrainingworkflow_ff48d8e5` (`course_id`),
CONSTRAINT `classifier_set_id_refs_id_dcc7412` FOREIGN KEY (`classifier_set_id`) REFERENCES `assessment_aiclassifierset` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_aitrainingworkflow`
--
LOCK TABLES `assessment_aitrainingworkflow` WRITE;
/*!40000 ALTER TABLE `assessment_aitrainingworkflow` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_aitrainingworkflow` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_aitrainingworkflow_training_examples`
--
DROP TABLE IF EXISTS `assessment_aitrainingworkflow_training_examples`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_aitrainingworkflow_training_examples` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`aitrainingworkflow_id` int(11) NOT NULL,
`trainingexample_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `assessment_aitraini_aitrainingworkflow_id_4b50cfbece05470a_uniq` (`aitrainingworkflow_id`,`trainingexample_id`),
KEY `assessment_aitrainingworkflow_training_examples_a57f9195` (`aitrainingworkflow_id`),
KEY `assessment_aitrainingworkflow_training_examples_ea4da31f` (`trainingexample_id`),
CONSTRAINT `aitrainingworkflow_id_refs_id_45c30582` FOREIGN KEY (`aitrainingworkflow_id`) REFERENCES `assessment_aitrainingworkflow` (`id`),
CONSTRAINT `trainingexample_id_refs_id_bf13a24` FOREIGN KEY (`trainingexample_id`) REFERENCES `assessment_trainingexample` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_aitrainingworkflow_training_examples`
--
LOCK TABLES `assessment_aitrainingworkflow_training_examples` WRITE;
/*!40000 ALTER TABLE `assessment_aitrainingworkflow_training_examples` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_aitrainingworkflow_training_examples` 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,
`rubric_id` int(11) NOT NULL,
`scored_at` datetime NOT NULL,
`scorer_id` varchar(40) NOT NULL,
`score_type` varchar(2) NOT NULL,
`feedback` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `assessment_assessment_39d020e6` (`submission_uuid`),
KEY `assessment_assessment_27cb9807` (`rubric_id`),
KEY `assessment_assessment_3227200` (`scored_at`),
KEY `assessment_assessment_9f54855a` (`scorer_id`),
CONSTRAINT `rubric_id_refs_id_1ab6dbc4` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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=utf8;
/*!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_assessmen_assessmentfeedback_id_36925aaa1a839ac_uniq` (`assessmentfeedback_id`,`assessment_id`),
KEY `assessment_assessmentfeedback_assessments_58f1f0d` (`assessmentfeedback_id`),
KEY `assessment_assessmentfeedback_assessments_c168f2dc` (`assessment_id`),
CONSTRAINT `assessment_id_refs_id_e7fd607e` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`),
CONSTRAINT `assessmentfeedback_id_refs_id_91bbd347` FOREIGN KEY (`assessmentfeedback_id`) REFERENCES `assessment_assessmentfeedback` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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_assessmen_assessmentfeedback_id_14efc9eea8f4c83_uniq` (`assessmentfeedback_id`,`assessmentfeedbackoption_id`),
KEY `assessment_assessmentfeedback_options_58f1f0d` (`assessmentfeedback_id`),
KEY `assessment_assessmentfeedback_options_4e523d64` (`assessmentfeedbackoption_id`),
CONSTRAINT `assessmentfeedback_id_refs_id_5c27c412` FOREIGN KEY (`assessmentfeedback_id`) REFERENCES `assessment_assessmentfeedback` (`id`),
CONSTRAINT `assessmentfeedbackoption_id_refs_id_cdf28acd` FOREIGN KEY (`assessmentfeedbackoption_id`) REFERENCES `assessment_assessmentfeedbackoption` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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=utf8;
/*!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,
`assessment_id` int(11) NOT NULL,
`option_id` int(11),
`feedback` longtext NOT NULL,
`criterion_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `assessment_assessmentpart_c168f2dc` (`assessment_id`),
KEY `assessment_assessmentpart_2f3b0dc9` (`option_id`),
KEY `assessment_assessmentpart_a36470e4` (`criterion_id`),
CONSTRAINT `assessment_id_refs_id_bff26444` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`),
CONSTRAINT `criterion_id_refs_id_eeb3dc44` FOREIGN KEY (`criterion_id`) REFERENCES `assessment_criterion` (`id`),
CONSTRAINT `option_id_refs_id_4439dd5` FOREIGN KEY (`option_id`) REFERENCES `assessment_criterionoption` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,
`rubric_id` int(11) NOT NULL,
`name` varchar(100) NOT NULL,
`order_num` int(10) unsigned NOT NULL,
`prompt` longtext NOT NULL,
`label` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
KEY `assessment_criterion_27cb9807` (`rubric_id`),
CONSTRAINT `rubric_id_refs_id_f2f4f3c4` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!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 */;
INSERT INTO `assessment_criterion` VALUES (1,1,'Content',0,'Did the response describe a meal and did it describe why someone should chose to eat it? ','Content'),(2,1,'Organization & Clarity',1,'How well did the response use language?','Organization & Clarity'),(3,1,'Persuasiveness',2,'How well did the response convince you to try the meal that it describes?','Persuasiveness');
/*!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,
`criterion_id` int(11) NOT NULL,
`order_num` int(10) unsigned NOT NULL,
`points` int(10) unsigned NOT NULL,
`name` varchar(100) NOT NULL,
`explanation` longtext NOT NULL,
`label` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
KEY `assessment_criterionoption_a36470e4` (`criterion_id`),
CONSTRAINT `criterion_id_refs_id_d2645232` FOREIGN KEY (`criterion_id`) REFERENCES `assessment_criterion` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*!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 */;
INSERT INTO `assessment_criterionoption` VALUES (1,1,0,0,'Off Topic','The essay is off-topic or does not answer all or part of the question.','Off Topic'),(2,1,1,5,'No Explanation','A meal is described, but no argument is made to persuade the reader to try it.','No Explanation'),(3,1,2,5,'Unclear recommendation','A meal is not described, but an argument is made to persuade the reader to try it.','Unclear recommendation'),(4,1,3,10,'Persuasive recommendation','The essay give a good description of the meal and provides supporting reasons for trying the meal.','Persuasive recommendation'),(5,2,0,0,'Confusing','It is difficult to identify the argument and main idea. ','Confusing'),(6,2,1,1,'Basic Structure','The essay provides a main idea. Additional details are provided, and some support the main idea.','Basic Structure'),(7,2,2,2,'Clear Structure','The essay provides a clear main idea supported by specific details.','Clear Structure'),(8,2,3,3,'Complete Structure','The essay has a complete structure: an introduction, statement of main idea, supporting details and summary. \\n','Complete Structure'),(9,3,0,0,'Unconvincing','The author did not present a persuasive argument, and I have no interest in trying this meal.','Unconvincing'),(10,3,1,2,'Interesting','The author’s argument was somewhat persuarsive. I need more information to consider trying this meal.','Interesting'),(11,3,2,4,'Persuasive','The author’s argument was persuasive, and I will consider trying the meal.','Persuasive'),(12,3,3,6,'Inspiring','The author presented an exceptionally strong case and has convinced me to try the meal. \\n','Inspiring');
/*!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(40) NOT NULL,
`submission_uuid` varchar(128) NOT NULL,
`created_at` datetime NOT NULL,
`completed_at` datetime DEFAULT NULL,
`grading_completed_at` datetime,
`cancelled_at` datetime,
PRIMARY KEY (`id`),
UNIQUE KEY `submission_uuid` (`submission_uuid`),
KEY `assessment_peerworkflow_42ff452e` (`student_id`),
KEY `assessment_peerworkflow_67b70d25` (`item_id`),
KEY `assessment_peerworkflow_ff48d8e5` (`course_id`),
KEY `assessment_peerworkflow_3b1c9c31` (`created_at`),
KEY `assessment_peerworkflow_a2fd3af6` (`completed_at`),
KEY `assessment_peerworkflow_course_id_5ca23fddca9b630d` (`course_id`,`item_id`,`student_id`),
KEY `assessment_peerworkflow_dcd62131` (`grading_completed_at`),
KEY `assessment_peerworkflow_853d09a8` (`cancelled_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,
`scorer_id` int(11) NOT NULL,
`author_id` int(11) NOT NULL,
`submission_uuid` varchar(128) NOT NULL,
`started_at` datetime NOT NULL,
`assessment_id` int(11) DEFAULT NULL,
`scored` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `assessment_peerworkflowitem_9f54855a` (`scorer_id`),
KEY `assessment_peerworkflowitem_cc846901` (`author_id`),
KEY `assessment_peerworkflowitem_39d020e6` (`submission_uuid`),
KEY `assessment_peerworkflowitem_d6e710e4` (`started_at`),
KEY `assessment_peerworkflowitem_c168f2dc` (`assessment_id`),
CONSTRAINT `assessment_id_refs_id_f69a86a1` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`),
CONSTRAINT `author_id_refs_id_59547df0` FOREIGN KEY (`author_id`) REFERENCES `assessment_peerworkflow` (`id`),
CONSTRAINT `scorer_id_refs_id_59547df0` FOREIGN KEY (`scorer_id`) REFERENCES `assessment_peerworkflow` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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_36e74b05` (`structure_hash`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!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 */;
INSERT INTO `assessment_rubric` VALUES (1,'b2783932b715f500b0af5f2e0d80757e54301353','ab95e8c199881793b6999c5efb1a5754fd7417d5');
/*!40000 ALTER TABLE `assessment_rubric` 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(40) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `assessment_studenttrainin_submission_uuid_6d32c6477719d68f_uniq` (`submission_uuid`),
KEY `assessment_studenttrainingworkflow_39d020e6` (`submission_uuid`),
KEY `assessment_studenttrainingworkflow_42ff452e` (`student_id`),
KEY `assessment_studenttrainingworkflow_67b70d25` (`item_id`),
KEY `assessment_studenttrainingworkflow_ff48d8e5` (`course_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,
`workflow_id` int(11) NOT NULL,
`order_num` int(10) unsigned NOT NULL,
`started_at` datetime NOT NULL,
`completed_at` datetime DEFAULT NULL,
`training_example_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `assessment_studenttrainingworkf_order_num_1391289faa95b87c_uniq` (`order_num`,`workflow_id`),
KEY `assessment_studenttrainingworkflowitem_26cddbc7` (`workflow_id`),
KEY `assessment_studenttrainingworkflowitem_541d6663` (`training_example_id`),
CONSTRAINT `training_example_id_refs_id_7d3f36e4` FOREIGN KEY (`training_example_id`) REFERENCES `assessment_trainingexample` (`id`),
CONSTRAINT `workflow_id_refs_id_ce50a30` FOREIGN KEY (`workflow_id`) REFERENCES `assessment_studenttrainingworkflow` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,
`rubric_id` int(11) NOT NULL,
`content_hash` varchar(40) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `content_hash` (`content_hash`),
KEY `assessment_trainingexample_27cb9807` (`rubric_id`),
CONSTRAINT `rubric_id_refs_id_7750db21` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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_trainingexa_trainingexample_id_60940991fb17d27d_uniq` (`trainingexample_id`,`criterionoption_id`),
KEY `assessment_trainingexample_options_selected_ea4da31f` (`trainingexample_id`),
KEY `assessment_trainingexample_options_selected_843fa247` (`criterionoption_id`),
CONSTRAINT `criterionoption_id_refs_id_bed5a465` FOREIGN KEY (`criterionoption_id`) REFERENCES `assessment_criterionoption` (`id`),
CONSTRAINT `trainingexample_id_refs_id_5f0faa8d` FOREIGN KEY (`trainingexample_id`) REFERENCES `assessment_trainingexample` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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 DEFAULT CHARSET=utf8;
/*!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 */;
/*!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 `group_id` (`group_id`,`permission_id`),
KEY `auth_group_permissions_bda51c3c` (`group_id`),
KEY `auth_group_permissions_1e014c8f` (`permission_id`),
CONSTRAINT `group_id_refs_id_3cea63fe` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `permission_id_refs_id_a7792de1` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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(50) NOT NULL,
`content_type_id` int(11) NOT NULL,
`codename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `content_type_id` (`content_type_id`,`codename`),
KEY `auth_permission_e4470c6e` (`content_type_id`),
CONSTRAINT `content_type_id_refs_id_728de91f` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=571 DEFAULT CHARSET=utf8;
/*!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',1,'add_permission'),(2,'Can change permission',1,'change_permission'),(3,'Can delete permission',1,'delete_permission'),(4,'Can add group',2,'add_group'),(5,'Can change group',2,'change_group'),(6,'Can delete group',2,'delete_group'),(7,'Can add user',3,'add_user'),(8,'Can change user',3,'change_user'),(9,'Can delete user',3,'delete_user'),(10,'Can add content type',4,'add_contenttype'),(11,'Can change content type',4,'change_contenttype'),(12,'Can delete content type',4,'delete_contenttype'),(13,'Can add session',5,'add_session'),(14,'Can change session',5,'change_session'),(15,'Can delete session',5,'delete_session'),(16,'Can add site',6,'add_site'),(17,'Can change site',6,'change_site'),(18,'Can delete site',6,'delete_site'),(19,'Can add task state',7,'add_taskmeta'),(20,'Can change task state',7,'change_taskmeta'),(21,'Can delete task state',7,'delete_taskmeta'),(22,'Can add saved group result',8,'add_tasksetmeta'),(23,'Can change saved group result',8,'change_tasksetmeta'),(24,'Can delete saved group result',8,'delete_tasksetmeta'),(25,'Can add interval',9,'add_intervalschedule'),(26,'Can change interval',9,'change_intervalschedule'),(27,'Can delete interval',9,'delete_intervalschedule'),(28,'Can add crontab',10,'add_crontabschedule'),(29,'Can change crontab',10,'change_crontabschedule'),(30,'Can delete crontab',10,'delete_crontabschedule'),(31,'Can add periodic tasks',11,'add_periodictasks'),(32,'Can change periodic tasks',11,'change_periodictasks'),(33,'Can delete periodic tasks',11,'delete_periodictasks'),(34,'Can add periodic task',12,'add_periodictask'),(35,'Can change periodic task',12,'change_periodictask'),(36,'Can delete periodic task',12,'delete_periodictask'),(37,'Can add worker',13,'add_workerstate'),(38,'Can change worker',13,'change_workerstate'),(39,'Can delete worker',13,'delete_workerstate'),(40,'Can add task',14,'add_taskstate'),(41,'Can change task',14,'change_taskstate'),(42,'Can delete task',14,'delete_taskstate'),(43,'Can add migration history',15,'add_migrationhistory'),(44,'Can change migration history',15,'change_migrationhistory'),(45,'Can delete migration history',15,'delete_migrationhistory'),(46,'Can add server circuit',16,'add_servercircuit'),(47,'Can change server circuit',16,'change_servercircuit'),(48,'Can delete server circuit',16,'delete_servercircuit'),(49,'Can add psychometric data',17,'add_psychometricdata'),(50,'Can change psychometric data',17,'change_psychometricdata'),(51,'Can delete psychometric data',17,'delete_psychometricdata'),(52,'Can add nonce',18,'add_nonce'),(53,'Can change nonce',18,'change_nonce'),(54,'Can delete nonce',18,'delete_nonce'),(55,'Can add association',19,'add_association'),(56,'Can change association',19,'change_association'),(57,'Can delete association',19,'delete_association'),(58,'Can add user open id',20,'add_useropenid'),(59,'Can change user open id',20,'change_useropenid'),(60,'Can delete user open id',20,'delete_useropenid'),(61,'Can add log entry',21,'add_logentry'),(62,'Can change log entry',21,'change_logentry'),(63,'Can delete log entry',21,'delete_logentry'),(64,'Can add cors model',22,'add_corsmodel'),(65,'Can change cors model',22,'change_corsmodel'),(66,'Can delete cors model',22,'delete_corsmodel'),(67,'Can add student module',23,'add_studentmodule'),(68,'Can change student module',23,'change_studentmodule'),(69,'Can delete student module',23,'delete_studentmodule'),(70,'Can add student module history',24,'add_studentmodulehistory'),(71,'Can change student module history',24,'change_studentmodulehistory'),(72,'Can delete student module history',24,'delete_studentmodulehistory'),(73,'Can add x module user state summary field',25,'add_xmoduleuserstatesummaryfield'),(74,'Can change x module user state summary field',25,'change_xmoduleuserstatesummaryfield'),(75,'Can delete x module user state summary field',25,'delete_xmoduleuserstatesummaryfield'),(76,'Can add x module student prefs field',26,'add_xmodulestudentprefsfield'),(77,'Can change x module student prefs field',26,'change_xmodulestudentprefsfield'),(78,'Can delete x module student prefs field',26,'delete_xmodulestudentprefsfield'),(79,'Can add x module student info field',27,'add_xmodulestudentinfofield'),(80,'Can change x module student info field',27,'change_xmodulestudentinfofield'),(81,'Can delete x module student info field',27,'delete_xmodulestudentinfofield'),(82,'Can add offline computed grade',28,'add_offlinecomputedgrade'),(83,'Can change offline computed grade',28,'change_offlinecomputedgrade'),(84,'Can delete offline computed grade',28,'delete_offlinecomputedgrade'),(85,'Can add offline computed grade log',29,'add_offlinecomputedgradelog'),(86,'Can change offline computed grade log',29,'change_offlinecomputedgradelog'),(87,'Can delete offline computed grade log',29,'delete_offlinecomputedgradelog'),(88,'Can add student field override',30,'add_studentfieldoverride'),(89,'Can change student field override',30,'change_studentfieldoverride'),(90,'Can delete student field override',30,'delete_studentfieldoverride'),(91,'Can add x block disable config',31,'add_xblockdisableconfig'),(92,'Can change x block disable config',31,'change_xblockdisableconfig'),(93,'Can delete x block disable config',31,'delete_xblockdisableconfig'),(94,'Can add anonymous user id',32,'add_anonymoususerid'),(95,'Can change anonymous user id',32,'change_anonymoususerid'),(96,'Can delete anonymous user id',32,'delete_anonymoususerid'),(97,'Can add user standing',33,'add_userstanding'),(98,'Can change user standing',33,'change_userstanding'),(99,'Can delete user standing',33,'delete_userstanding'),(100,'Can add user profile',34,'add_userprofile'),(101,'Can change user profile',34,'change_userprofile'),(102,'Can delete user profile',34,'delete_userprofile'),(103,'Can add user signup source',35,'add_usersignupsource'),(104,'Can change user signup source',35,'change_usersignupsource'),(105,'Can delete user signup source',35,'delete_usersignupsource'),(106,'Can add user test group',36,'add_usertestgroup'),(107,'Can change user test group',36,'change_usertestgroup'),(108,'Can delete user test group',36,'delete_usertestgroup'),(109,'Can add registration',37,'add_registration'),(110,'Can change registration',37,'change_registration'),(111,'Can delete registration',37,'delete_registration'),(112,'Can add pending name change',38,'add_pendingnamechange'),(113,'Can change pending name change',38,'change_pendingnamechange'),(114,'Can delete pending name change',38,'delete_pendingnamechange'),(115,'Can add pending email change',39,'add_pendingemailchange'),(116,'Can change pending email change',39,'change_pendingemailchange'),(117,'Can delete pending email change',39,'delete_pendingemailchange'),(118,'Can add password history',40,'add_passwordhistory'),(119,'Can change password history',40,'change_passwordhistory'),(120,'Can delete password history',40,'delete_passwordhistory'),(121,'Can add login failures',41,'add_loginfailures'),(122,'Can change login failures',41,'change_loginfailures'),(123,'Can delete login failures',41,'delete_loginfailures'),(124,'Can add course enrollment',42,'add_courseenrollment'),(125,'Can change course enrollment',42,'change_courseenrollment'),(126,'Can delete course enrollment',42,'delete_courseenrollment'),(127,'Can add manual enrollment audit',43,'add_manualenrollmentaudit'),(128,'Can change manual enrollment audit',43,'change_manualenrollmentaudit'),(129,'Can delete manual enrollment audit',43,'delete_manualenrollmentaudit'),(130,'Can add course enrollment allowed',44,'add_courseenrollmentallowed'),(131,'Can change course enrollment allowed',44,'change_courseenrollmentallowed'),(132,'Can delete course enrollment allowed',44,'delete_courseenrollmentallowed'),(133,'Can add course access role',45,'add_courseaccessrole'),(134,'Can change course access role',45,'change_courseaccessrole'),(135,'Can delete course access role',45,'delete_courseaccessrole'),(136,'Can add dashboard configuration',46,'add_dashboardconfiguration'),(137,'Can change dashboard configuration',46,'change_dashboardconfiguration'),(138,'Can delete dashboard configuration',46,'delete_dashboardconfiguration'),(139,'Can add linked in add to profile configuration',47,'add_linkedinaddtoprofileconfiguration'),(140,'Can change linked in add to profile configuration',47,'change_linkedinaddtoprofileconfiguration'),(141,'Can delete linked in add to profile configuration',47,'delete_linkedinaddtoprofileconfiguration'),(142,'Can add entrance exam configuration',48,'add_entranceexamconfiguration'),(143,'Can change entrance exam configuration',48,'change_entranceexamconfiguration'),(144,'Can delete entrance exam configuration',48,'delete_entranceexamconfiguration'),(145,'Can add language proficiency',49,'add_languageproficiency'),(146,'Can change language proficiency',49,'change_languageproficiency'),(147,'Can delete language proficiency',49,'delete_languageproficiency'),(148,'Can add course enrollment attribute',50,'add_courseenrollmentattribute'),(149,'Can change course enrollment attribute',50,'change_courseenrollmentattribute'),(150,'Can delete course enrollment attribute',50,'delete_courseenrollmentattribute'),(151,'Can add tracking log',51,'add_trackinglog'),(152,'Can change tracking log',51,'change_trackinglog'),(153,'Can delete tracking log',51,'delete_trackinglog'),(154,'Can add rate limit configuration',52,'add_ratelimitconfiguration'),(155,'Can change rate limit configuration',52,'change_ratelimitconfiguration'),(156,'Can delete rate limit configuration',52,'delete_ratelimitconfiguration'),(157,'Can add certificate whitelist',53,'add_certificatewhitelist'),(158,'Can change certificate whitelist',53,'change_certificatewhitelist'),(159,'Can delete certificate whitelist',53,'delete_certificatewhitelist'),(160,'Can add generated certificate',54,'add_generatedcertificate'),(161,'Can change generated certificate',54,'change_generatedcertificate'),(162,'Can delete generated certificate',54,'delete_generatedcertificate'),(163,'Can add example certificate set',55,'add_examplecertificateset'),(164,'Can change example certificate set',55,'change_examplecertificateset'),(165,'Can delete example certificate set',55,'delete_examplecertificateset'),(166,'Can add example certificate',56,'add_examplecertificate'),(167,'Can change example certificate',56,'change_examplecertificate'),(168,'Can delete example certificate',56,'delete_examplecertificate'),(169,'Can add certificate generation course setting',57,'add_certificategenerationcoursesetting'),(170,'Can change certificate generation course setting',57,'change_certificategenerationcoursesetting'),(171,'Can delete certificate generation course setting',57,'delete_certificategenerationcoursesetting'),(172,'Can add certificate generation configuration',58,'add_certificategenerationconfiguration'),(173,'Can change certificate generation configuration',58,'change_certificategenerationconfiguration'),(174,'Can delete certificate generation configuration',58,'delete_certificategenerationconfiguration'),(175,'Can add certificate html view configuration',59,'add_certificatehtmlviewconfiguration'),(176,'Can change certificate html view configuration',59,'change_certificatehtmlviewconfiguration'),(177,'Can delete certificate html view configuration',59,'delete_certificatehtmlviewconfiguration'),(178,'Can add badge assertion',60,'add_badgeassertion'),(179,'Can change badge assertion',60,'change_badgeassertion'),(180,'Can delete badge assertion',60,'delete_badgeassertion'),(181,'Can add badge image configuration',61,'add_badgeimageconfiguration'),(182,'Can change badge image configuration',61,'change_badgeimageconfiguration'),(183,'Can delete badge image configuration',61,'delete_badgeimageconfiguration'),(184,'Can add instructor task',62,'add_instructortask'),(185,'Can change instructor task',62,'change_instructortask'),(186,'Can delete instructor task',62,'delete_instructortask'),(187,'Can add course software',63,'add_coursesoftware'),(188,'Can change course software',63,'change_coursesoftware'),(189,'Can delete course software',63,'delete_coursesoftware'),(190,'Can add user license',64,'add_userlicense'),(191,'Can change user license',64,'change_userlicense'),(192,'Can delete user license',64,'delete_userlicense'),(193,'Can add course user group',65,'add_courseusergroup'),(194,'Can change course user group',65,'change_courseusergroup'),(195,'Can delete course user group',65,'delete_courseusergroup'),(196,'Can add course user group partition group',66,'add_courseusergrouppartitiongroup'),(197,'Can change course user group partition group',66,'change_courseusergrouppartitiongroup'),(198,'Can delete course user group partition group',66,'delete_courseusergrouppartitiongroup'),(199,'Can add course cohorts settings',67,'add_coursecohortssettings'),(200,'Can change course cohorts settings',67,'change_coursecohortssettings'),(201,'Can delete course cohorts settings',67,'delete_coursecohortssettings'),(202,'Can add course cohort',68,'add_coursecohort'),(203,'Can change course cohort',68,'change_coursecohort'),(204,'Can delete course cohort',68,'delete_coursecohort'),(205,'Can add course email',69,'add_courseemail'),(206,'Can change course email',69,'change_courseemail'),(207,'Can delete course email',69,'delete_courseemail'),(208,'Can add optout',70,'add_optout'),(209,'Can change optout',70,'change_optout'),(210,'Can delete optout',70,'delete_optout'),(211,'Can add course email template',71,'add_courseemailtemplate'),(212,'Can change course email template',71,'change_courseemailtemplate'),(213,'Can delete course email template',71,'delete_courseemailtemplate'),(214,'Can add course authorization',72,'add_courseauthorization'),(215,'Can change course authorization',72,'change_courseauthorization'),(216,'Can delete course authorization',72,'delete_courseauthorization'),(217,'Can add branding info config',73,'add_brandinginfoconfig'),(218,'Can change branding info config',73,'change_brandinginfoconfig'),(219,'Can delete branding info config',73,'delete_brandinginfoconfig'),(220,'Can add branding api config',74,'add_brandingapiconfig'),(221,'Can change branding api config',74,'change_brandingapiconfig'),(222,'Can delete branding api config',74,'delete_brandingapiconfig'),(223,'Can add external auth map',75,'add_externalauthmap'),(224,'Can change external auth map',75,'change_externalauthmap'),(225,'Can delete external auth map',75,'delete_externalauthmap'),(226,'Can add client',76,'add_client'),(227,'Can change client',76,'change_client'),(228,'Can delete client',76,'delete_client'),(229,'Can add grant',77,'add_grant'),(230,'Can change grant',77,'change_grant'),(231,'Can delete grant',77,'delete_grant'),(232,'Can add access token',78,'add_accesstoken'),(233,'Can change access token',78,'change_accesstoken'),(234,'Can delete access token',78,'delete_accesstoken'),(235,'Can add refresh token',79,'add_refreshtoken'),(236,'Can change refresh token',79,'change_refreshtoken'),(237,'Can delete refresh token',79,'delete_refreshtoken'),(238,'Can add trusted client',80,'add_trustedclient'),(239,'Can change trusted client',80,'change_trustedclient'),(240,'Can delete trusted client',80,'delete_trustedclient'),(241,'Can add article',81,'add_article'),(242,'Can change article',81,'change_article'),(243,'Can delete article',81,'delete_article'),(244,'Can edit all articles and lock/unlock/restore',81,'moderate'),(245,'Can change ownership of any article',81,'assign'),(246,'Can assign permissions to other users',81,'grant'),(247,'Can add Article for object',82,'add_articleforobject'),(248,'Can change Article for object',82,'change_articleforobject'),(249,'Can delete Article for object',82,'delete_articleforobject'),(250,'Can add article revision',83,'add_articlerevision'),(251,'Can change article revision',83,'change_articlerevision'),(252,'Can delete article revision',83,'delete_articlerevision'),(253,'Can add URL path',84,'add_urlpath'),(254,'Can change URL path',84,'change_urlpath'),(255,'Can delete URL path',84,'delete_urlpath'),(256,'Can add article plugin',85,'add_articleplugin'),(257,'Can change article plugin',85,'change_articleplugin'),(258,'Can delete article plugin',85,'delete_articleplugin'),(259,'Can add reusable plugin',86,'add_reusableplugin'),(260,'Can change reusable plugin',86,'change_reusableplugin'),(261,'Can delete reusable plugin',86,'delete_reusableplugin'),(262,'Can add simple plugin',87,'add_simpleplugin'),(263,'Can change simple plugin',87,'change_simpleplugin'),(264,'Can delete simple plugin',87,'delete_simpleplugin'),(265,'Can add revision plugin',88,'add_revisionplugin'),(266,'Can change revision plugin',88,'change_revisionplugin'),(267,'Can delete revision plugin',88,'delete_revisionplugin'),(268,'Can add revision plugin revision',89,'add_revisionpluginrevision'),(269,'Can change revision plugin revision',89,'change_revisionpluginrevision'),(270,'Can delete revision plugin revision',89,'delete_revisionpluginrevision'),(271,'Can add article subscription',90,'add_articlesubscription'),(272,'Can change article subscription',90,'change_articlesubscription'),(273,'Can delete article subscription',90,'delete_articlesubscription'),(274,'Can add type',91,'add_notificationtype'),(275,'Can change type',91,'change_notificationtype'),(276,'Can delete type',91,'delete_notificationtype'),(277,'Can add settings',92,'add_settings'),(278,'Can change settings',92,'change_settings'),(279,'Can delete settings',92,'delete_settings'),(280,'Can add subscription',93,'add_subscription'),(281,'Can change subscription',93,'change_subscription'),(282,'Can delete subscription',93,'delete_subscription'),(283,'Can add notification',94,'add_notification'),(284,'Can change notification',94,'change_notification'),(285,'Can delete notification',94,'delete_notification'),(286,'Can add score',95,'add_score'),(287,'Can change score',95,'change_score'),(288,'Can delete score',95,'delete_score'),(289,'Can add puzzle complete',96,'add_puzzlecomplete'),(290,'Can change puzzle complete',96,'change_puzzlecomplete'),(291,'Can delete puzzle complete',96,'delete_puzzlecomplete'),(292,'Can add note',97,'add_note'),(293,'Can change note',97,'change_note'),(294,'Can delete note',97,'delete_note'),(295,'Can add splash config',98,'add_splashconfig'),(296,'Can change splash config',98,'change_splashconfig'),(297,'Can delete splash config',98,'delete_splashconfig'),(298,'Can add user preference',99,'add_userpreference'),(299,'Can change user preference',99,'change_userpreference'),(300,'Can delete user preference',99,'delete_userpreference'),(301,'Can add user course tag',100,'add_usercoursetag'),(302,'Can change user course tag',100,'change_usercoursetag'),(303,'Can delete user course tag',100,'delete_usercoursetag'),(304,'Can add user org tag',101,'add_userorgtag'),(305,'Can change user org tag',101,'change_userorgtag'),(306,'Can delete user org tag',101,'delete_userorgtag'),(307,'Can add course team',102,'add_courseteam'),(308,'Can change course team',102,'change_courseteam'),(309,'Can delete course team',102,'delete_courseteam'),(310,'Can add course team membership',103,'add_courseteammembership'),(311,'Can change course team membership',103,'change_courseteammembership'),(312,'Can delete course team membership',103,'delete_courseteammembership'),(313,'Can add order',104,'add_order'),(314,'Can change order',104,'change_order'),(315,'Can delete order',104,'delete_order'),(316,'Can add order item',105,'add_orderitem'),(317,'Can change order item',105,'change_orderitem'),(318,'Can delete order item',105,'delete_orderitem'),(319,'Can add invoice',106,'add_invoice'),(320,'Can change invoice',106,'change_invoice'),(321,'Can delete invoice',106,'delete_invoice'),(322,'Can add invoice transaction',107,'add_invoicetransaction'),(323,'Can change invoice transaction',107,'change_invoicetransaction'),(324,'Can delete invoice transaction',107,'delete_invoicetransaction'),(325,'Can add invoice item',108,'add_invoiceitem'),(326,'Can change invoice item',108,'change_invoiceitem'),(327,'Can delete invoice item',108,'delete_invoiceitem'),(328,'Can add course registration code invoice item',109,'add_courseregistrationcodeinvoiceitem'),(329,'Can change course registration code invoice item',109,'change_courseregistrationcodeinvoiceitem'),(330,'Can delete course registration code invoice item',109,'delete_courseregistrationcodeinvoiceitem'),(331,'Can add invoice history',110,'add_invoicehistory'),(332,'Can change invoice history',110,'change_invoicehistory'),(333,'Can delete invoice history',110,'delete_invoicehistory'),(334,'Can add course registration code',111,'add_courseregistrationcode'),(335,'Can change course registration code',111,'change_courseregistrationcode'),(336,'Can delete course registration code',111,'delete_courseregistrationcode'),(337,'Can add registration code redemption',112,'add_registrationcoderedemption'),(338,'Can change registration code redemption',112,'change_registrationcoderedemption'),(339,'Can delete registration code redemption',112,'delete_registrationcoderedemption'),(340,'Can add coupon',113,'add_coupon'),(341,'Can change coupon',113,'change_coupon'),(342,'Can delete coupon',113,'delete_coupon'),(343,'Can add coupon redemption',114,'add_couponredemption'),(344,'Can change coupon redemption',114,'change_couponredemption'),(345,'Can delete coupon redemption',114,'delete_couponredemption'),(346,'Can add paid course registration',115,'add_paidcourseregistration'),(347,'Can change paid course registration',115,'change_paidcourseregistration'),(348,'Can delete paid course registration',115,'delete_paidcourseregistration'),(349,'Can add course reg code item',116,'add_courseregcodeitem'),(350,'Can change course reg code item',116,'change_courseregcodeitem'),(351,'Can delete course reg code item'以上是关于Open edX数据结构Mysql edxapp的主要内容,如果未能解决你的问题,请参考以下文章