-- MySQL dump 10.13 Distrib 5.6.49, for Linux (x86_64)
--
-- Host: localhost Database: edxapp
-- ------------------------------------------------------
-- Server version 5.6.49
/*!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 `announcements_announcement`
--
DROP TABLE IF EXISTS `announcements_announcement`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `announcements_announcement` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content` varchar(1000) NOT NULL,
`active` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `announcements_announcement`
--
LOCK TABLES `announcements_announcement` WRITE;
/*!40000 ALTER TABLE `announcements_announcement` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcements_announcement` ENABLE KEYS */;
UNLOCK TABLES;
--
-- 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_historicalsharedfileupload`
--
DROP TABLE IF EXISTS `assessment_historicalsharedfileupload`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_historicalsharedfileupload` (
`id` int(11) NOT NULL,
`created` datetime(6) NOT NULL,
`modified` datetime(6) NOT NULL,
`team_id` varchar(255) NOT NULL,
`course_id` varchar(255) NOT NULL,
`item_id` varchar(255) NOT NULL,
`owner_id` varchar(255) NOT NULL,
`file_key` varchar(255) NOT NULL,
`description` longtext NOT NULL,
`size` bigint(20) 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,
`history_user_id` int(11) DEFAULT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`history_id`),
KEY `assessment_historica_history_user_id_28fa87d9_fk_auth_user` (`history_user_id`),
KEY `assessment_historicalsharedfileupload_id_34052991` (`id`),
KEY `assessment_historicalsharedfileupload_team_id_e32268e1` (`team_id`),
KEY `assessment_historicalsharedfileupload_course_id_7fd70b9d` (`course_id`),
KEY `assessment_historicalsharedfileupload_item_id_b7bca199` (`item_id`),
KEY `assessment_historicalsharedfileupload_owner_id_09b09e30` (`owner_id`),
KEY `assessment_historicalsharedfileupload_file_key_03fbd3e7` (`file_key`),
CONSTRAINT `assessment_historica_history_user_id_28fa87d9_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 `assessment_historicalsharedfileupload`
--
LOCK TABLES `assessment_historicalsharedfileupload` WRITE;
/*!40000 ALTER TABLE `assessment_historicalsharedfileupload` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_historicalsharedfileupload` 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_sharedfileupload`
--
DROP TABLE IF EXISTS `assessment_sharedfileupload`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_sharedfileupload` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`created` datetime(6) NOT NULL,
`modified` datetime(6) NOT NULL,
`team_id` varchar(255) NOT NULL,
`course_id` varchar(255) NOT NULL,
`item_id` varchar(255) NOT NULL,
`owner_id` varchar(255) NOT NULL,
`file_key` varchar(255) NOT NULL,
`description` longtext NOT NULL,
`size` bigint(20) NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `file_key` (`file_key`),
KEY `assessment_sharedfileupload_team_id_dbdd3cb7` (`team_id`),
KEY `assessment_sharedfileupload_course_id_73edb775` (`course_id`),
KEY `assessment_sharedfileupload_item_id_b471d0c9` (`item_id`),
KEY `assessment_sharedfileupload_owner_id_f4d7fe4f` (`owner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_sharedfileupload`
--
LOCK TABLES `assessment_sharedfileupload` WRITE;
/*!40000 ALTER TABLE `assessment_sharedfileupload` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_sharedfileupload` 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_teamstaffworkflow`
--
DROP TABLE IF EXISTS `assessment_teamstaffworkflow`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_teamstaffworkflow` (
`staffworkflow_ptr_id` int(11) NOT NULL,
`team_submission_uuid` varchar(128) NOT NULL,
PRIMARY KEY (`staffworkflow_ptr_id`),
UNIQUE KEY `team_submission_uuid` (`team_submission_uuid`),
CONSTRAINT `assessment_teamstaff_staffworkflow_ptr_id_e55a780c_fk_assessmen` FOREIGN KEY (`staffworkflow_ptr_id`) REFERENCES `assessment_staffworkflow` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_teamstaffworkflow`
--
LOCK TABLES `assessment_teamstaffworkflow` WRITE;
/*!40000 ALTER TABLE `assessment_teamstaffworkflow` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_teamstaffworkflow` 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_accountrecovery`
--
DROP TABLE IF EXISTS `auth_accountrecovery`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_accountrecovery` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`secondary_email` varchar(254) NOT NULL,
`user_id` int(11) NOT NULL,
`is_active` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `secondary_email` (`secondary_email`),
UNIQUE KEY `user_id` (`user_id`),
CONSTRAINT `auth_accountrecovery_user_id_0c61e73c_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_accountrecovery`
--
LOCK TABLES `auth_accountrecovery` WRITE;
/*!40000 ALTER TABLE `auth_accountrecovery` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_accountrecovery` 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(150) 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=1633 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 view permission',2,'view_permission'),(5,'Can add group',3,'add_group'),(6,'Can change group',3,'change_group'),(7,'Can delete group',3,'delete_group'),(8,'Can view group',3,'view_group'),(9,'Can add user',4,'add_user'),(10,'Can change user',4,'change_user'),(11,'Can delete user',4,'delete_user'),(12,'Can view user',4,'view_user'),(13,'Can add content type',5,'add_contenttype'),(14,'Can change content type',5,'change_contenttype'),(15,'Can delete content type',5,'delete_contenttype'),(16,'Can view content type',5,'view_contenttype'),(17,'Can add redirect',6,'add_redirect'),(18,'Can change redirect',6,'change_redirect'),(19,'Can delete redirect',6,'delete_redirect'),(20,'Can view redirect',6,'view_redirect'),(21,'Can add session',7,'add_session'),(22,'Can change session',7,'change_session'),(23,'Can delete session',7,'delete_session'),(24,'Can view session',7,'view_session'),(25,'Can add site',8,'add_site'),(26,'Can change site',8,'change_site'),(27,'Can delete site',8,'delete_site'),(28,'Can view site',8,'view_site'),(29,'Can add task result',9,'add_taskresult'),(30,'Can change task result',9,'change_taskresult'),(31,'Can delete task result',9,'delete_taskresult'),(32,'Can view task result',9,'view_taskresult'),(33,'Can add Flag',10,'add_flag'),(34,'Can change Flag',10,'change_flag'),(35,'Can delete Flag',10,'delete_flag'),(36,'Can view Flag',10,'view_flag'),(37,'Can add Sample',11,'add_sample'),(38,'Can change Sample',11,'change_sample'),(39,'Can delete Sample',11,'delete_sample'),(40,'Can view Sample',11,'view_sample'),(41,'Can add Switch',12,'add_switch'),(42,'Can change Switch',12,'change_switch'),(43,'Can delete Switch',12,'delete_switch'),(44,'Can view Switch',12,'view_switch'),(45,'Can add course message',13,'add_coursemessage'),(46,'Can change course message',13,'change_coursemessage'),(47,'Can delete course message',13,'delete_coursemessage'),(48,'Can view course message',13,'view_coursemessage'),(49,'Can add global status message',14,'add_globalstatusmessage'),(50,'Can change global status message',14,'change_globalstatusmessage'),(51,'Can delete global status message',14,'delete_globalstatusmessage'),(52,'Can view global status message',14,'view_globalstatusmessage'),(53,'Can add asset base url config',15,'add_assetbaseurlconfig'),(54,'Can change asset base url config',15,'change_assetbaseurlconfig'),(55,'Can delete asset base url config',15,'delete_assetbaseurlconfig'),(56,'Can view asset base url config',15,'view_assetbaseurlconfig'),(57,'Can add asset excluded extensions config',16,'add_assetexcludedextensionsconfig'),(58,'Can change asset excluded extensions config',16,'change_assetexcludedextensionsconfig'),(59,'Can delete asset excluded extensions config',16,'delete_assetexcludedextensionsconfig'),(60,'Can view asset excluded extensions config',16,'view_assetexcludedextensionsconfig'),(61,'Can add course asset cache ttl config',17,'add_courseassetcachettlconfig'),(62,'Can change course asset cache ttl config',17,'change_courseassetcachettlconfig'),(63,'Can delete course asset cache ttl config',17,'delete_courseassetcachettlconfig'),(64,'Can view course asset cache ttl config',17,'view_courseassetcachettlconfig'),(65,'Can add cdn user agents config',18,'add_cdnuseragentsconfig'),(66,'Can change cdn user agents config',18,'change_cdnuseragentsconfig'),(67,'Can delete cdn user agents config',18,'delete_cdnuseragentsconfig'),(68,'Can view cdn user agents config',18,'view_cdnuseragentsconfig'),(69,'Can add site configuration',19,'add_siteconfiguration'),(70,'Can change site configuration',19,'change_siteconfiguration'),(71,'Can delete site configuration',19,'delete_siteconfiguration'),(72,'Can view site configuration',19,'view_siteconfiguration'),(73,'Can add site configuration history',20,'add_siteconfigurationhistory'),(74,'Can change site configuration history',20,'change_siteconfigurationhistory'),(75,'Can delete site configuration history',20,'delete_siteconfigurationhistory'),(76,'Can view site configuration history',20,'view_siteconfigurationhistory'),(77,'Can add course hls playback enabled flag',21,'add_coursehlsplaybackenabledflag'),(78,'Can change course hls playback enabled flag',21,'change_coursehlsplaybackenabledflag'),(79,'Can delete course hls playback enabled flag',21,'delete_coursehlsplaybackenabledflag'),(80,'Can view course hls playback enabled flag',21,'view_coursehlsplaybackenabledflag'),(81,'Can add hls playback enabled flag',22,'add_hlsplaybackenabledflag'),(82,'Can change hls playback enabled flag',22,'change_hlsplaybackenabledflag'),(83,'Can delete hls playback enabled flag',22,'delete_hlsplaybackenabledflag'),(84,'Can view hls playback enabled flag',22,'view_hlsplaybackenabledflag'),(85,'Can add course video transcript enabled flag',23,'add_coursevideotranscriptenabledflag'),(86,'Can change course video transcript enabled flag',23,'change_coursevideotranscriptenabledflag'),(87,'Can delete course video transcript enabled flag',23,'delete_coursevideotranscriptenabledflag'),(88,'Can view course video transcript enabled flag',23,'view_coursevideotranscriptenabledflag'),(89,'Can add video transcript enabled flag',24,'add_videotranscriptenabledflag'),(90,'Can change video transcript enabled flag',24,'change_videotranscriptenabledflag'),(91,'Can delete video transcript enabled flag',24,'delete_videotranscriptenabledflag'),(92,'Can view video transcript enabled flag',24,'view_videotranscriptenabledflag'),(93,'Can add transcript migration setting',25,'add_transcriptmigrationsetting'),(94,'Can change transcript migration setting',25,'change_transcriptmigrationsetting'),(95,'Can delete transcript migration setting',25,'delete_transcriptmigrationsetting'),(96,'Can view transcript migration setting',25,'view_transcriptmigrationsetting'),(97,'Can add migration enqueued course',26,'add_migrationenqueuedcourse'),(98,'Can change migration enqueued course',26,'change_migrationenqueuedcourse'),(99,'Can delete migration enqueued course',26,'delete_migrationenqueuedcourse'),(100,'Can view migration enqueued course',26,'view_migrationenqueuedcourse'),(101,'Can add updated course videos',27,'add_updatedcoursevideos'),(102,'Can change updated course videos',27,'change_updatedcoursevideos'),(103,'Can delete updated course videos',27,'delete_updatedcoursevideos'),(104,'Can view updated course videos',27,'view_updatedcoursevideos'),(105,'Can add video thumbnail setting',28,'add_videothumbnailsetting'),(106,'Can change video thumbnail setting',28,'change_videothumbnailsetting'),(107,'Can delete video thumbnail setting',28,'delete_videothumbnailsetting'),(108,'Can view video thumbnail setting',28,'view_videothumbnailsetting'),(109,'Can add course youtube blocked flag',29,'add_courseyoutubeblockedflag'),(110,'Can change course youtube blocked flag',29,'change_courseyoutubeblockedflag'),(111,'Can delete course youtube blocked flag',29,'delete_courseyoutubeblockedflag'),(112,'Can view course youtube blocked flag',29,'view_courseyoutubeblockedflag'),(113,'Can add course video uploads enabled by default',30,'add_coursevideouploadsenabledbydefault'),(114,'Can change course video uploads enabled by default',30,'change_coursevideouploadsenabledbydefault'),(115,'Can delete course video uploads enabled by default',30,'delete_coursevideouploadsenabledbydefault'),(116,'Can view course video uploads enabled by default',30,'view_coursevideouploadsenabledbydefault'),(117,'Can add video uploads enabled by default',31,'add_videouploadsenabledbydefault'),(118,'Can change video uploads enabled by default',31,'change_videouploadsenabledbydefault'),(119,'Can delete video uploads enabled by default',31,'delete_videouploadsenabledbydefault'),(120,'Can view video uploads enabled by default',31,'view_videouploadsenabledbydefault'),(121,'Can add vem pipeline integration',32,'add_vempipelineintegration'),(122,'Can change vem pipeline integration',32,'change_vempipelineintegration'),(123,'Can delete vem pipeline integration',32,'delete_vempipelineintegration'),(124,'Can view vem pipeline integration',32,'view_vempipelineintegration'),(125,'Can add offline computed grade',33,'add_offlinecomputedgrade'),(126,'Can change offline computed grade',33,'change_offlinecomputedgrade'),(127,'Can delete offline computed grade',33,'delete_offlinecomputedgrade'),(128,'Can view offline computed grade',33,'view_offlinecomputedgrade'),(129,'Can add offline computed grade log',34,'add_offlinecomputedgradelog'),(130,'Can change offline computed grade log',34,'change_offlinecomputedgradelog'),(131,'Can delete offline computed grade log',34,'delete_offlinecomputedgradelog'),(132,'Can view offline computed grade log',34,'view_offlinecomputedgradelog'),(133,'Can add student field override',35,'add_studentfieldoverride'),(134,'Can change student field override',35,'change_studentfieldoverride'),(135,'Can delete student field override',35,'delete_studentfieldoverride'),(136,'Can view student field override',35,'view_studentfieldoverride'),(137,'Can add student module',36,'add_studentmodule'),(138,'Can change student module',36,'change_studentmodule'),(139,'Can delete student module',36,'delete_studentmodule'),(140,'Can view student module',36,'view_studentmodule'),(141,'Can add student module history',37,'add_studentmodulehistory'),(142,'Can change student module history',37,'change_studentmodulehistory'),(143,'Can delete student module history',37,'delete_studentmodulehistory'),(144,'Can view student module history',37,'view_studentmodulehistory'),(145,'Can add x module student info field',38,'add_xmodulestudentinfofield'),(146,'Can change x module student info field',38,'change_xmodulestudentinfofield'),(147,'Can delete x module student info field',38,'delete_xmodulestudentinfofield'),(148,'Can view x module student info field',38,'view_xmodulestudentinfofield'),(149,'Can add x module student prefs field',39,'add_xmodulestudentprefsfield'),(150,'Can change x module student prefs field',39,'change_xmodulestudentprefsfield'),(151,'Can delete x module student prefs field',39,'delete_xmodulestudentprefsfield'),(152,'Can view x module student prefs field',39,'view_xmodulestudentprefsfield'),(153,'Can add x module user state summary field',40,'add_xmoduleuserstatesummaryfield'),(154,'Can change x module user state summary field',40,'change_xmoduleuserstatesummaryfield'),(155,'Can delete x module user state summary field',40,'delete_xmoduleuserstatesummaryfield'),(156,'Can view x module user state summary field',40,'view_xmoduleuserstatesummaryfield'),(157,'Can add course dynamic upgrade deadline configuration',41,'add_coursedynamicupgradedeadlineconfiguration'),(158,'Can change course dynamic upgrade deadline configuration',41,'change_coursedynamicupgradedeadlineconfiguration'),(159,'Can delete course dynamic upgrade deadline configuration',41,'delete_coursedynamicupgradedeadlineconfiguration'),(160,'Can view course dynamic upgrade deadline configuration',41,'view_coursedynamicupgradedeadlineconfiguration'),(161,'Can add dynamic upgrade deadline configuration',42,'add_dynamicupgradedeadlineconfiguration'),(162,'Can change dynamic upgrade deadline configuration',42,'change_dynamicupgradedeadlineconfiguration'),(163,'Can delete dynamic upgrade deadline configuration',42,'delete_dynamicupgradedeadlineconfiguration'),(164,'Can view dynamic upgrade deadline configuration',42,'view_dynamicupgradedeadlineconfiguration'),(165,'Can add org dynamic upgrade deadline configuration',43,'add_orgdynamicupgradedeadlineconfiguration'),(166,'Can change org dynamic upgrade deadline configuration',43,'change_orgdynamicupgradedeadlineconfiguration'),(167,'Can delete org dynamic upgrade deadline configuration',43,'delete_orgdynamicupgradedeadlineconfiguration'),(168,'Can view org dynamic upgrade deadline configuration',43,'view_orgdynamicupgradedeadlineconfiguration'),(169,'Can add student module history extended',44,'add_studentmodulehistoryextended'),(170,'Can change student module history extended',44,'change_studentmodulehistoryextended'),(171,'Can delete student module history extended',44,'delete_studentmodulehistoryextended'),(172,'Can view student module history extended',44,'view_studentmodulehistoryextended'),(173,'Can add anonymous user id',45,'add_anonymoususerid'),(174,'Can change anonymous user id',45,'change_anonymoususerid'),(175,'Can delete anonymous user id',45,'delete_anonymoususerid'),(176,'Can view anonymous user id',45,'view_anonymoususerid'),(177,'Can add course access role',46,'add_courseaccessrole'),(178,'Can change course access role',46,'change_courseaccessrole'),(179,'Can delete course access role',46,'delete_courseaccessrole'),(180,'Can view course access role',46,'view_courseaccessrole'),(181,'Can add course enrollment',47,'add_courseenrollment'),(182,'Can change course enrollment',47,'change_courseenrollment'),(183,'Can delete course enrollment',47,'delete_courseenrollment'),(184,'Can view course enrollment',47,'view_courseenrollment'),(185,'Can add course enrollment allowed',48,'add_courseenrollmentallowed'),(186,'Can change course enrollment allowed',48,'change_courseenrollmentallowed'),(187,'Can delete course enrollment allowed',48,'delete_courseenrollmentallowed'),(188,'Can view course enrollment allowed',48,'view_courseenrollmentallowed'),(189,'Can add course enrollment attribute',49,'add_courseenrollmentattribute'),(190,'Can change course enrollment attribute',49,'change_courseenrollmentattribute'),(191,'Can delete course enrollment attribute',49,'delete_courseenrollmentattribute'),(192,'Can view course enrollment attribute',49,'view_courseenrollmentattribute'),(193,'Can add dashboard configuration',50,'add_dashboardconfiguration'),(194,'Can change dashboard configuration',50,'change_dashboardconfiguration'),(195,'Can delete dashboard configuration',50,'delete_dashboardconfiguration'),(196,'Can view dashboard configuration',50,'view_dashboardconfiguration'),(197,'Can add enrollment refund configuration',51,'add_enrollmentrefundconfiguration'),(198,'Can change enrollment refund configuration',51,'change_enrollmentrefundconfiguration'),(199,'Can delete enrollment refund configuration',51,'delete_enrollmentrefundconfiguration'),(200,'Can view enrollment refund configuration',51,'view_enrollmentrefundconfiguration'),(201,'Can add entrance exam configuration',52,'add_entranceexamconfiguration'),(202,'Can change entrance exam configuration',52,'change_entranceexamconfiguration'),(203,'Can delete entrance exam configuration',52,'delete_entranceexamconfiguration'),(204,'Can view entrance exam configuration',52,'view_entranceexamconfiguration'),(205,'Can add language proficiency',53,'add_languageproficiency'),(206,'Can change language proficiency',53,'change_languageproficiency'),(207,'Can delete language proficiency',53,'delete_languageproficiency'),(208,'Can view language proficiency',53,'view_languageproficiency'),(209,'Can add linked in add to profile configuration',54,'add_linkedinaddtoprofileconfiguration'),(210,'Can change linked in add to profile configuration',54,'change_linkedinaddtoprofileconfiguration'),(211,'Can delete linked in add to profile configuration',54,'delete_linkedinaddtoprofileconfiguration'),(212,'Can view linked in add to profile configuration',54,'view_linkedinaddtoprofileconfiguration'),(213,'Can add Login Failure',55,'add_loginfailures'),(214,'Can change Login Failure',55,'change_loginfailures'),(215,'Can delete Login Failure',55,'delete_loginfailures'),(216,'Can view Login Failure',55,'view_loginfailures'),(217,'Can add manual enrollment audit',56,'add_manualenrollmentaudit'),(218,'Can change manual enrollment audit',56,'change_manualenrollmentaudit'),(219,'Can delete manual enrollment audit',56,'delete_manualenrollmentaudit'),(220,'Can view manual enrollment audit',56,'view_manualenrollmentaudit'),(221,'Can add pending email change',57,'add_pendingemailchange'),(222,'Can change pending email change',57,'change_pendingemailchange'),(223,'Can delete pending email change',57,'delete_pendingemailchange'),(224,'Can view pending email change',57,'view_pendingemailchange'),(225,'Can add pending name change',58,'add_pendingnamechange'),(226,'Can change pending name change',58,'change_pendingnamechange'),(227,'Can delete pending name change',58,'delete_pendingnamechange'),(228,'Can view pending name change',58,'view_pendingnamechange'),(229,'Can add registration',59,'add_registration'),(230,'Can change registration',59,'change_registration'),(231,'Can delete registration',59,'delete_registration'),(232,'Can view registration',59,'view_registration'),(233,'Can add user profile',60,'add_userprofile'),(234,'Can change user profile',60,'change_userprofile'),(235,'Can delete user profile',60,'delete_userprofile'),(236,'Can view user profile',60,'view_userprofile'),(237,'Can deactivate, but NOT delete users',60,'can_deactivate_users'),(238,'Can add user signup source',61,'add_usersignupsource'),(239,'Can change user signup source',61,'change_usersignupsource'),(240,'Can delete user signup source',61,'delete_usersignupsource'),(241,'Can view user signup source',61,'view_usersignupsource'),(242,'Can add user standing',62,'add_userstanding'),(243,'Can change user standing',62,'change_userstanding'),(244,'Can delete user standing',62,'delete_userstanding'),(245,'Can view user standing',62,'view_userstanding'),(246,'Can add user test group',63,'add_usertestgroup'),(247,'Can change user test group',63,'change_usertestgroup'),(248,'Can delete user test group',63,'delete_usertestgroup'),(249,'Can view user test group',63,'view_usertestgroup'),(250,'Can add user attribute',64,'add_userattribute'),(251,'Can change user attribute',64,'change_userattribute'),(252,'Can delete user attribute',64,'delete_userattribute'),(253,'Can view user attribute',64,'view_userattribute'),(254,'Can add registration cookie configuration',65,'add_registrationcookieconfiguration'),(255,'Can change registration cookie configuration',65,'change_registrationcookieconfiguration'),(256,'Can delete registration cookie configuration',65,'delete_registrationcookieconfiguration'),(257,'Can view registration cookie configuration',65,'view_registrationcookieconfiguration'),(258,'Can add social link',66,'add_sociallink'),(259,'Can change social link',66,'change_sociallink'),(260,'Can delete social link',66,'delete_sociallink'),(261,'Can view social link',66,'view_sociallink'),(262,'Can add account recovery',67,'add_accountrecovery'),(263,'Can change account recovery',67,'change_accountrecovery'),(264,'Can delete account recovery',67,'delete_accountrecovery'),(265,'Can view account recovery',67,'view_accountrecovery'),(266,'Can add pending secondary email change',68,'add_pendingsecondaryemailchange'),(267,'Can change pending secondary email change',68,'change_pendingsecondaryemailchange'),(268,'Can delete pending secondary email change',68,'delete_pendingsecondaryemailchange'),(269,'Can view pending secondary email change',68,'view_pendingsecondaryemailchange'),(270,'Can add historical course enrollment',69,'add_historicalcourseenrollment'),(271,'Can change historical course enrollment',69,'change_historicalcourseenrollment'),(272,'Can delete historical course enrollment',69,'delete_historicalcourseenrollment'),(273,'Can view historical course enrollment',69,'view_historicalcourseenrollment'),(274,'Can add bulk unenroll configuration',70,'add_bulkunenrollconfiguration'),(275,'Can change bulk unenroll configuration',70,'change_bulkunenrollconfiguration'),(276,'Can delete bulk unenroll configuration',70,'delete_bulkunenrollconfiguration'),(277,'Can view bulk unenroll configuration',70,'view_bulkunenrollconfiguration'),(278,'Can add fbe enrollment exclusion',71,'add_fbeenrollmentexclusion'),(279,'Can change fbe enrollment exclusion',71,'change_fbeenrollmentexclusion'),(280,'Can delete fbe enrollment exclusion',71,'delete_fbeenrollmentexclusion'),(281,'Can view fbe enrollment exclusion',71,'view_fbeenrollmentexclusion'),(282,'Can add allowed auth user',72,'add_allowedauthuser'),(283,'Can change allowed auth user',72,'change_allowedauthuser'),(284,'Can delete allowed auth user',72,'delete_allowedauthuser'),(285,'Can view allowed auth user',72,'view_allowedauthuser'),(286,'Can add historical manual enrollment audit',73,'add_historicalmanualenrollmentaudit'),(287,'Can change historical manual enrollment audit',73,'change_historicalmanualenrollmentaudit'),(288,'Can delete historical manual enrollment audit',73,'delete_historicalmanualenrollmentaudit'),(289,'Can view historical manual enrollment audit',73,'view_historicalmanualenrollmentaudit'),(290,'Can add account recovery configuration',74,'add_accountrecoveryconfiguration'),(291,'Can change account recovery configuration',74,'change_accountrecoveryconfiguration'),(292,'Can delete account recovery configuration',74,'delete_accountrecoveryconfiguration'),(293,'Can view account recovery configuration',74,'view_accountrecoveryconfiguration'),(294,'Can add course enrollment celebration',75,'add_courseenrollmentcelebration'),(295,'Can change course enrollment celebration',75,'change_courseenrollmentcelebration'),(296,'Can delete course enrollment celebration',75,'delete_courseenrollmentcelebration'),(297,'Can view course enrollment celebration',75,'view_courseenrollmentcelebration'),(298,'Can add bulk change enrollment configuration',76,'add_bulkchangeenrollmentconfiguration'),(299,'Can change bulk change enrollment configuration',76,'change_bulkchangeenrollmentconfiguration'),(300,'Can delete bulk change enrollment configuration',76,'delete_bulkchangeenrollmentconfiguration'),(301,'Can view bulk change enrollment configuration',76,'view_bulkchangeenrollmentconfiguration'),(302,'Can add rate limit configuration',77,'add_ratelimitconfiguration'),(303,'Can change rate limit configuration',77,'change_ratelimitconfiguration'),(304,'Can delete rate limit configuration',77,'delete_ratelimitconfiguration'),(305,'Can view rate limit configuration',77,'view_ratelimitconfiguration'),(306,'Can add certificate generation configuration',78,'add_certificategenerationconfiguration'),(307,'Can change certificate generation configuration',78,'change_certificategenerationconfiguration'),(308,'Can delete certificate generation configuration',78,'delete_certificategenerationconfiguration'),(309,'Can view certificate generation configuration',78,'view_certificategenerationconfiguration'),(310,'Can add certificate generation course setting',79,'add_certificategenerationcoursesetting'),(311,'Can change certificate generation course setting',79,'change_certificategenerationcoursesetting'),(312,'Can delete certificate generation course setting',79,'delete_certificategenerationcoursesetting'),(313,'Can view certificate generation course setting',79,'view_certificategenerationcoursesetting'),(314,'Can add certificate html view configuration',80,'add_certificatehtmlviewconfiguration'),(315,'Can change certificate html view configuration',80,'change_certificatehtmlviewconfiguration'),(316,'Can delete certificate html view configuration',80,'delete_certificatehtmlviewconfiguration'),(317,'Can view certificate html view configuration',80,'view_certificatehtmlviewconfiguration'),(318,'Can add certificate template',81,'add_certificatetemplate'),(319,'Can change certificate template',81,'change_certificatetemplate'),(320,'Can delete certificate template',81,'delete_certificatetemplate'),(321,'Can view certificate template',81,'view_certificatetemplate'),(322,'Can add certificate template asset',82,'add_certificatetemplateasset'),(323,'Can change certificate template asset',82,'change_certificatetemplateasset'),(324,'Can delete certificate template asset',82,'delete_certificatetemplateasset'),(325,'Can view certificate template asset',82,'view_certificatetemplateasset'),(326,'Can add certificate whitelist',83,'add_certificatewhitelist'),(327,'Can change certificate whitelist',83,'change_certificatewhitelist'),(328,'Can delete certificate whitelist',83,'delete_certificatewhitelist'),(329,'Can view certificate whitelist',83,'view_certificatewhitelist'),(330,'Can add example certificate',84,'add_examplecertificate'),(331,'Can change example certificate',84,'change_examplecertificate'),(332,'Can delete example certificate',84,'delete_examplecertificate'),(333,'Can view example certificate',84,'view_examplecertificate'),(334,'Can add example certificate set',85,'add_examplecertificateset'),(335,'Can change example certificate set',85,'change_examplecertificateset'),(336,'Can delete example certificate set',85,'delete_examplecertificateset'),(337,'Can view example certificate set',85,'view_examplecertificateset'),(338,'Can add generated certificate',86,'add_generatedcertificate'),(339,'Can change generated certificate',86,'change_generatedcertificate'),(340,'Can delete generated certificate',86,'delete_generatedcertificate'),(341,'Can view generated certificate',86,'view_generatedcertificate'),(342,'Can add certificate generation history',87,'add_certificategenerationhistory'),(343,'Can change certificate generation history',87,'change_certificategenerationhistory'),(344,'Can delete certificate generation history',87,'delete_certificategenerationhistory'),(345,'Can view certificate generation history',87,'view_certificategenerationhistory'),(346,'Can add certificate invalidation',88,'add_certificateinvalidation'),(347,'Can change certificate invalidation',88,'change_certificateinvalidation'),(348,'Can delete certificate invalidation',88,'delete_certificateinvalidation'),(349,'Can view certificate invalidation',88,'view_certificateinvalidation'),(350,'Can add historical generated certificate',89,'add_historicalgeneratedcertificate'),(351,'Can change historical generated certificate',89,'change_historicalgeneratedcertificate'),(352,'Can delete historical generated certificate',89,'delete_historicalgeneratedcertificate'),(353,'Can view historical generated certificate',89,'view_historicalgeneratedcertificate'),(354,'Can add instructor task',90,'add_instructortask'),(355,'Can change instructor task',90,'change_instructortask'),(356,'Can delete instructor task',90,'delete_instructortask'),(357,'Can view instructor task',90,'view_instructortask'),(358,'Can add grade report setting',91,'add_gradereportsetting'),(359,'Can change grade report setting',91,'change_gradereportsetting'),(360,'Can delete grade report setting',91,'delete_gradereportsetting'),(361,'Can view grade report setting',91,'view_gradereportsetting'),(362,'Can add cohort membership',92,'add_cohortmembership'),(363,'Can change cohort membership',92,'change_cohortmembership'),(364,'Can delete cohort membership',92,'delete_cohortmembership'),(365,'Can view cohort membership',92,'view_cohortmembership'),(366,'Can add course cohort',93,'add_coursecohort'),(367,'Can change course cohort',93,'change_coursecohort'),(368,'Can delete course cohort',93,'delete_coursecohort'),(369,'Can view course cohort',93,'view_coursecohort'),(370,'Can add course cohorts settings',94,'add_coursecohortssettings'),(371,'Can change course cohorts settings',94,'change_coursecohortssettings'),(372,'Can delete course cohorts settings',94,'delete_coursecohortssettings'),(373,'Can view course cohorts settings',94,'view_coursecohortssettings'),(374,'Can add course user group',95,'add_courseusergroup'),(375,'Can change course user group',95,'change_courseusergroup'),(376,'Can delete course user group',95,'delete_courseusergroup'),(377,'Can view course user group',95,'view_courseusergroup'),(378,'Can add course user group partition group',96,'add_courseusergrouppartitiongroup'),(379,'Can change course user group partition group',96,'change_courseusergrouppartitiongroup'),(380,'Can delete course user group partition group',96,'delete_courseusergrouppartitiongroup'),(381,'Can view course user group partition group',96,'view_courseusergrouppartitiongroup'),(382,'Can add unregistered learner cohort assignments',97,'add_unregisteredlearnercohortassignments'),(383,'Can change unregistered learner cohort assignments',97,'change_unregisteredlearnercohortassignments'),(384,'Can delete unregistered learner cohort assignments',97,'delete_unregisteredlearnercohortassignments'),(385,'Can view unregistered learner cohort assignments',97,'view_unregisteredlearnercohortassignments'),(386,'Can add course authorization',98,'add_courseauthorization'),(387,'Can change course authorization',98,'change_courseauthorization'),(388,'Can delete course authorization',98,'delete_courseauthorization'),(389,'Can view course authorization',98,'view_courseauthorization'),(390,'Can add course email',99,'add_courseemail'),(391,'Can change course email',99,'change_courseemail'),(392,'Can delete course email',99,'delete_courseemail'),(393,'Can view course email',99,'view_courseemail'),(394,'Can add course email template',100,'add_courseemailtemplate'),(395,'Can change course email template',100,'change_courseemailtemplate'),(396,'Can delete course email template',100,'delete_courseemailtemplate'),(397,'Can view course email template',100,'view_courseemailtemplate'),(398,'Can add optout',101,'add_optout'),(399,'Can change optout',101,'change_optout'),(400,'Can delete optout',101,'delete_optout'),(401,'Can view optout',101,'view_optout'),(402,'Can add bulk email flag',102,'add_bulkemailflag'),(403,'Can change bulk email flag',102,'change_bulkemailflag'),(404,'Can delete bulk email flag',102,'delete_bulkemailflag'),(405,'Can view bulk email flag',102,'view_bulkemailflag'),(406,'Can add target',103,'add_target'),(407,'Can change target',103,'change_target'),(408,'Can delete target',103,'delete_target'),(409,'Can view target',103,'view_target'),(410,'Can add cohort target',104,'add_cohorttarget'),(411,'Can change cohort target',104,'change_cohorttarget'),(412,'Can delete cohort target',104,'delete_cohorttarget'),(413,'Can view cohort target',104,'view_cohorttarget'),(414,'Can add course mode target',105,'add_coursemodetarget'),(415,'Can change course mode target',105,'change_coursemodetarget'),(416,'Can delete course mode target',105,'delete_coursemodetarget'),(417,'Can view course mode target',105,'view_coursemodetarget'),(418,'Can add branding api config',106,'add_brandingapiconfig'),(419,'Can change branding api config',106,'change_brandingapiconfig'),(420,'Can delete branding api config',106,'delete_brandingapiconfig'),(421,'Can view branding api config',106,'view_brandingapiconfig'),(422,'Can add branding info config',107,'add_brandinginfoconfig'),(423,'Can change branding info config',107,'change_brandinginfoconfig'),(424,'Can delete branding info config',107,'delete_brandinginfoconfig'),(425,'Can view branding info config',107,'view_brandinginfoconfig'),(426,'Can add application',108,'add_application'),(427,'Can change application',108,'change_application'),(428,'Can delete application',108,'delete_application'),(429,'Can view application',108,'view_application'),(430,'Can add access token',109,'add_accesstoken'),(431,'Can change access token',109,'change_accesstoken'),(432,'Can delete access token',109,'delete_accesstoken'),(433,'Can view access token',109,'view_accesstoken'),(434,'Can add grant',110,'add_grant'),(435,'Can change grant',110,'change_grant'),(436,'Can delete grant',110,'delete_grant'),(437,'Can view grant',110,'view_grant'),(438,'Can add refresh token',111,'add_refreshtoken'),(439,'Can change refresh token',111,'change_refreshtoken'),(440,'Can delete refresh token',111,'delete_refreshtoken'),(441,'Can view refresh token',111,'view_refreshtoken'),(442,'Can add restricted application',112,'add_restrictedapplication'),(443,'Can change restricted application',112,'change_restrictedapplication'),(444,'Can delete restricted application',112,'delete_restrictedapplication'),(445,'Can view restricted application',112,'view_restrictedapplication'),(446,'Can add application access',113,'add_applicationaccess'),(447,'Can change application access',113,'change_applicationaccess'),(448,'Can delete application access',113,'delete_applicationaccess'),(449,'Can view application access',113,'view_applicationaccess'),(450,'Can add application organization',114,'add_applicationorganization'),(451,'Can change application organization',114,'change_applicationorganization'),(452,'Can delete application organization',114,'delete_applicationorganization'),(453,'Can view application organization',114,'view_applicationorganization'),(454,'Can add SAML Provider Data',115,'add_samlproviderdata'),(455,'Can change SAML Provider Data',115,'change_samlproviderdata'),(456,'Can delete SAML Provider Data',115,'delete_samlproviderdata'),(457,'Can view SAML Provider Data',115,'view_samlproviderdata'),(458,'Can add SAML Configuration',116,'add_samlconfiguration'),(459,'Can change SAML Configuration',116,'change_samlconfiguration'),(460,'Can delete SAML Configuration',116,'delete_samlconfiguration'),(461,'Can view SAML Configuration',116,'view_samlconfiguration'),(462,'Can add Provider Configuration (OAuth)',117,'add_oauth2providerconfig'),(463,'Can change Provider Configuration (OAuth)',117,'change_oauth2providerconfig'),(464,'Can delete Provider Configuration (OAuth)',117,'delete_oauth2providerconfig'),(465,'Can view Provider Configuration (OAuth)',117,'view_oauth2providerconfig'),(466,'Can add Provider Configuration (LTI)',118,'add_ltiproviderconfig'),(467,'Can change Provider Configuration (LTI)',118,'change_ltiproviderconfig'),(468,'Can delete Provider Configuration (LTI)',118,'delete_ltiproviderconfig'),(469,'Can view Provider Configuration (LTI)',118,'view_ltiproviderconfig'),(470,'Can add Provider Configuration (SAML IdP)',119,'add_samlproviderconfig'),(471,'Can change Provider Configuration (SAML IdP)',119,'change_samlproviderconfig'),(472,'Can delete Provider Configuration (SAML IdP)',119,'delete_samlproviderconfig'),(473,'Can view Provider Configuration (SAML IdP)',119,'view_samlproviderconfig'),(474,'Can add system wide role',120,'add_systemwiderole'),(475,'Can change system wide role',120,'change_systemwiderole'),(476,'Can delete system wide role',120,'delete_systemwiderole'),(477,'Can view system wide role',120,'view_systemwiderole'),(478,'Can add system wide role assignment',121,'add_systemwideroleassignment'),(479,'Can change system wide role assignment',121,'change_systemwideroleassignment'),(480,'Can delete system wide role assignment',121,'delete_systemwideroleassignment'),(481,'Can view system wide role assignment',121,'view_systemwideroleassignment'),(482,'Can add article',122,'add_article'),(483,'Can change article',122,'change_article'),(484,'Can delete article',122,'delete_article'),(485,'Can view article',122,'view_article'),(486,'Can edit all articles and lock/unlock/restore',122,'moderate'),(487,'Can change ownership of any article',122,'assign'),(488,'Can assign permissions to other users',122,'grant'),(489,'Can add Article for object',123,'add_articleforobject'),(490,'Can change Article for object',123,'change_articleforobject'),(491,'Can delete Article for object',123,'delete_articleforobject'),(492,'Can view Article for object',123,'view_articleforobject'),(493,'Can add article plugin',124,'add_articleplugin'),(494,'Can change article plugin',124,'change_articleplugin'),(495,'Can delete article plugin',124,'delete_articleplugin'),(496,'Can view article plugin',124,'view_articleplugin'),(497,'Can add article revision',125,'add_articlerevision'),(498,'Can change article revision',125,'change_articlerevision'),(499,'Can delete article revision',125,'delete_articlerevision'),(500,'Can view article revision',125,'view_articlerevision'),(501,'Can add reusable plugin',126,'add_reusableplugin'),(502,'Can change reusable plugin',126,'change_reusableplugin'),(503,'Can delete reusable plugin',126,'delete_reusableplugin'),(504,'Can view reusable plugin',126,'view_reusableplugin'),(505,'Can add revision plugin',127,'add_revisionplugin'),(506,'Can change revision plugin',127,'change_revisionplugin'),(507,'Can delete revision plugin',127,'delete_revisionplugin'),(508,'Can view revision plugin',127,'view_revisionplugin'),(509,'Can add revision plugin revision',128,'add_revisionpluginrevision'),(510,'Can change revision plugin revision',128,'change_revisionpluginrevision'),(511,'Can delete revision plugin revision',128,'delete_revisionpluginrevision'),(512,'Can view revision plugin revision',128,'view_revisionpluginrevision'),(513,'Can add simple plugin',129,'add_simpleplugin'),(514,'Can change simple plugin',129,'change_simpleplugin'),(515,'Can delete simple plugin',129,'delete_simpleplugin'),(516,'Can view simple plugin',129,'view_simpleplugin'),(517,'Can add URL path',130,'add_urlpath'),(518,'Can change URL path',130,'change_urlpath'),(519,'Can delete URL path',130,'delete_urlpath'),(520,'Can view URL path',130,'view_urlpath'),(521,'Can add notification',131,'add_notification'),(522,'Can change notification',131,'change_notification'),(523,'Can delete notification',131,'delete_notification'),(524,'Can view notification',131,'view_notification'),(525,'Can add type',132,'add_notificationtype'),(526,'Can change type',132,'change_notificationtype'),(527,'Can delete type',132,'delete_notificationtype'),(528,'Can view type',132,'view_notificationtype'),(529,'Can add settings',133,'add_settings'),(530,'Can change settings',133,'change_settings'),(531,'Can delete settings',133,'delete_settings'),(532,'Can view settings',133,'view_settings'),(533,'Can add subscription',134,'add_subscription'),(534,'Can change subscription',134,'change_subscription'),(535,'Can delete subscription',134,'delete_subscription'),(536,'Can view subscription',134,'view_subscription'),(537,'Can add log entry',135,'add_logentry'),(538,'Can change log entry',135,'change_logentry'),(539,'Can delete log entry',135,'delete_logentry'),(540,'Can view log entry',135,'view_logentry'),(541,'Can add permission',136,'add_permission'),(542,'Can change permission',136,'change_permission'),(543,'Can delete permission',136,'delete_permission'),(544,'Can view permission',136,'view_permission'),(545,'Can add role',137,'add_role'),(546,'Can change role',137,'change_role'),(547,'Can delete role',137,'delete_role'),(548,'Can view role',137,'view_role'),(549,'Can add forums config',138,'add_forumsconfig'),(550,'Can change forums config',138,'change_forumsconfig'),(551,'Can delete forums config',138,'delete_forumsconfig'),(552,'Can view forums config',138,'view_forumsconfig'),(553,'Can add course discussion settings',139,'add_coursediscussionsettings'),(554,'Can change course discussion settings',139,'change_coursediscussionsettings'),(555,'Can delete course discussion settings',139,'delete_coursediscussionsettings'),(556,'Can view course discussion settings',139,'view_coursediscussionsettings'),(557,'Can add discussions id mapping',140,'add_discussionsidmapping'),(558,'Can change discussions id mapping',140,'change_discussionsidmapping'),(559,'Can delete discussions id mapping',140,'delete_discussionsidmapping'),(560,'Can view discussions id mapping',140,'view_discussionsidmapping'),(561,'Can add splash config',141,'add_splashconfig'),(562,'Can change splash config',141,'change_splashconfig'),(563,'Can delete splash config',141,'delete_splashconfig'),(564,'Can view splash config',141,'view_splashconfig'),(565,'Can add user course tag',142,'add_usercoursetag'),(566,'Can change user course tag',142,'change_usercoursetag'),(567,'Can delete user course tag',142,'delete_usercoursetag'),(568,'Can view user course tag',142,'view_usercoursetag'),(569,'Can add user org tag',143,'add_userorgtag'),(570,'Can change user org tag',143,'change_userorgtag'),(571,'Can delete user org tag',143,'delete_userorgtag'),(572,'Can view user org tag',143,'view_userorgtag'),(573,'Can add user preference',144,'add_userpreference'),(574,'Can change user preference',144,'change_userpreference'),(575,'Can delete user preference',144,'delete_userpreference'),(576,'Can view user preference',144,'view_userpreference'),(577,'Can add retirement state',145,'add_retirementstate'),(578,'Can change retirement state',145,'change_retirementstate'),(579,'Can delete retirement state',145,'delete_retirementstate'),(580,'Can view retirement state',145,'view_retirementstate'),(581,'Can add User Retirement Status',146,'add_userretirementstatus'),(582,'Can change User Retirement Status',146,'change_userretirementstatus'),(583,'Can delete User Retirement Status',146,'delete_userretirementstatus'),(584,'Can view User Retirement Status',146,'view_userretirementstatus'),(585,'Can add User Retirement Request',147,'add_userretirementrequest'),(586,'Can change User Retirement Request',147,'change_userretirementrequest'),(587,'Can delete User Retirement Request',147,'delete_userretirementrequest'),(588,'Can view User Retirement Request',147,'view_userretirementrequest'),(589,'Can add User Retirement Reporting Status',148,'add_userretirementpartnerreportingstatus'),(590,'Can change User Retirement Reporting Status',148,'change_userretirementpartnerreportingstatus'),(591,'Can delete User Retirement Reporting Status',148,'delete_userretirementpartnerreportingstatus'),(592,'Can view User Retirement Reporting Status',148,'view_userretirementpartnerreportingstatus'),(593,'Can add coupon',149,'add_coupon'),(594,'Can change coupon',149,'change_coupon'),(595,'Can delete coupon',149,'delete_coupon'),(596,'Can view coupon',149,'view_coupon'),(597,'Can add coupon redemption',150,'add_couponredemption'),(598,'Can change coupon redemption',150,'change_couponredemption'),(599,'Can delete coupon redemption',150,'delete_couponredemption'),(600,'Can view coupon redemption',150,'view_couponredemption'),(601,'Can add course reg code item annotation',151,'add_courseregcodeitemannotation'),(602,'Can change course reg code item annotation',151,'change_courseregcodeitemannotation'),(603,'Can delete course reg code item annotation',151,'delete_courseregcodeitemannotation'),(604,'Can view course reg code item annotation',151,'view_courseregcodeitemannotation'),(605,'Can add course registration code',152,'add_courseregistrationcode'),(606,'Can change course registration code',152,'change_courseregistrationcode'),(607,'Can delete course registration code',152,'delete_courseregistrationcode'),(608,'Can view course registration code',152,'view_courseregistrationcode'),(609,'Can add donation configuration',153,'add_donationconfiguration'),(610,'Can change donation configuration',153,'change_donationconfiguration'),(611,'Can delete donation configuration',153,'delete_donationconfiguration'),(612,'Can view donation configuration',153,'view_donationconfiguration'),(613,'Can add invoice',154,'add_invoice'),(614,'Can change invoice',154,'change_invoice'),(615,'Can delete invoice',154,'delete_invoice'),(616,'Can view invoice',154,'view_invoice'),(617,'Can add invoice history',155,'add_invoicehistory'),(618,'Can change invoice history',155,'change_invoicehistory'),(619,'Can delete invoice history',155,'delete_invoicehistory'),(620,'Can view invoice history',155,'view_invoicehistory'),(621,'Can add invoice item',156,'add_invoiceitem'),(622,'Can change invoice item',156,'change_invoiceitem'),(623,'Can delete invoice item',156,'delete_invoiceitem'),(624,'Can view invoice item',156,'view_invoiceitem'),(625,'Can add invoice transaction',157,'add_invoicetransaction'),(626,'Can change invoice transaction',157,'change_invoicetransaction'),(627,'Can delete invoice transaction',157,'delete_invoicetransaction'),(628,'Can view invoice transaction',157,'view_invoicetransaction'),(629,'Can add order',158,'add_order'),(630,'Can change order',158,'change_order'),(631,'Can delete order',158,'delete_order'),(632,'Can view order',158,'view_order'),(633,'Can add order item',159,'add_orderitem'),(634,'Can change order item',159,'change_orderitem'),(635,'Can delete order item',159,'delete_orderitem'),(636,'Can view order item',159,'view_orderitem'),(637,'Can add paid course registration annotation',160,'add_paidcourseregistrationannotation'),(638,'Can change paid course registration annotation',160,'change_paidcourseregistrationannotation'),(639,'Can delete paid course registration annotation',160,'delete_paidcourseregistrationannotation'),(640,'Can view paid course registration annotation',160,'view_paidcourseregistrationannotation'),(641,'Can add registration code redemption',161,'add_registrationcoderedemption'),(642,'Can change registration code redemption',161,'change_registrationcoderedemption'),(643,'Can delete registration code redemption',161,'delete_registrationcoderedemption'),(644,'Can view registration code redemption',161,'view_registrationcoderedemption'),(645,'Can add certificate item',162,'add_certificateitem'),(646,'Can change certificate item',162,'change_certificateitem'),(647,'Can delete certificate item',162,'delete_certificateitem'),(648,'Can view certificate item',162,'view_certificateitem'),(649,'Can add course reg code item',163,'add_courseregcodeitem'),(650,'Can change course reg code item',163,'change_courseregcodeitem'),(651,'Can delete course reg code item',163,'delete_courseregcodeitem'),(652,'Can view course reg code item',163,'view_courseregcodeitem'),(653,'Can add course registration code invoice item',164,'add_courseregistrationcodeinvoiceitem'),(654,'Can change course registration code invoice item',164,'change_courseregistrationcodeinvoiceitem'),(655,'Can delete course registration code invoice item',164,'delete_courseregistrationcodeinvoiceitem'),(656,'Can view course registration code invoice item',164,'view_courseregistrationcodeinvoiceitem'),(657,'Can add donation',165,'add_donation'),(658,'Can change donation',165,'change_donation'),(659,'Can delete donation',165,'delete_donation'),(660,'Can view donation',165,'view_donation'),(661,'Can add paid course registration',166,'add_paidcourseregistration'),(662,'Can change paid course registration',166,'change_paidcourseregistration'),(663,'Can delete paid course registration',166,'delete_paidcourseregistration'),(664,'Can view paid course registration',166,'view_paidcourseregistration'),(665,'Can add course mode',167,'add_coursemode'),(666,'Can change course mode',167,'change_coursemode'),(667,'Can delete course mode',167,'delete_coursemode'),(668,'Can view course mode',167,'view_coursemode'),(669,'Can add course modes archive',168,'add_coursemodesarchive'),(670,'Can change course modes archive',168,'change_coursemodesarchive'),(671,'Can delete course modes archive',168,'delete_coursemodesarchive'),(672,'Can view course modes archive',168,'view_coursemodesarchive'),(673,'Can add course mode expiration config',169,'add_coursemodeexpirationconfig'),(674,'Can change course mode expiration config',169,'change_coursemodeexpirationconfig'),(675,'Can delete course mode expiration config',169,'delete_coursemodeexpirationconfig'),(676,'Can view course mode expiration config',169,'view_coursemodeexpirationconfig'),(677,'Can add historical course mode',170,'add_historicalcoursemode'),(678,'Can change historical course mode',170,'change_historicalcoursemode'),(679,'Can delete historical course mode',170,'delete_historicalcoursemode'),(680,'Can view historical course mode',170,'view_historicalcoursemode'),(681,'Can add course entitlement',171,'add_courseentitlement'),(682,'Can change course entitlement',171,'change_courseentitlement'),(683,'Can delete course entitlement',171,'delete_courseentitlement'),(684,'Can view course entitlement',171,'view_courseentitlement'),(685,'Can add course entitlement policy',172,'add_courseentitlementpolicy'),(686,'Can change course entitlement policy',172,'change_courseentitlementpolicy'),(687,'Can delete course entitlement policy',172,'delete_courseentitlementpolicy'),(688,'Can view course entitlement policy',172,'view_courseentitlementpolicy'),(689,'Can add course entitlement support detail',173,'add_courseentitlementsupportdetail'),(690,'Can change course entitlement support detail',173,'change_courseentitlementsupportdetail'),(691,'Can delete course entitlement support detail',173,'delete_courseentitlementsupportdetail'),(692,'Can view course entitlement support detail',173,'view_courseentitlementsupportdetail'),(693,'Can add historical course entitlement',174,'add_historicalcourseentitlement'),(694,'Can change historical course entitlement',174,'change_historicalcourseentitlement'),(695,'Can delete historical course entitlement',174,'delete_historicalcourseentitlement'),(696,'Can view historical course entitlement',174,'view_historicalcourseentitlement'),(697,'Can add historical course entitlement support detail',175,'add_historicalcourseentitlementsupportdetail'),(698,'Can change historical course entitlement support detail',175,'change_historicalcourseentitlementsupportdetail'),(699,'Can delete historical course entitlement support detail',175,'delete_historicalcourseentitlementsupportdetail'),(700,'Can view historical course entitlement support detail',175,'view_historicalcourseentitlementsupportdetail'),(701,'Can add software secure photo verification',176,'add_softwaresecurephotoverification'),(702,'Can change software secure photo verification',176,'change_softwaresecurephotoverification'),(703,'Can delete software secure photo verification',176,'delete_softwaresecurephotoverification'),(704,'Can view software secure photo verification',176,'view_softwaresecurephotoverification'),(705,'Can add verification deadline',177,'add_verificationdeadline'),(706,'Can change verification deadline',177,'change_verificationdeadline'),(707,'Can delete verification deadline',177,'delete_verificationdeadline'),(708,'Can view verification deadline',177,'view_verificationdeadline'),(709,'Can add sso verification',178,'add_ssoverification'),(710,'Can change sso verification',178,'change_ssoverification'),(711,'Can delete sso verification',178,'delete_ssoverification'),(712,'Can view sso verification',178,'view_ssoverification'),(713,'Can add manual verification',179,'add_manualverification'),(714,'Can change manual verification',179,'change_manualverification'),(715,'Can delete manual verification',179,'delete_manualverification'),(716,'Can view manual verification',179,'view_manualverification'),(717,'Can add sspv retry student argument',180,'add_sspverificationretryconfig'),(718,'Can change sspv retry student argument',180,'change_sspverificationretryconfig'),(719,'Can delete sspv retry student argument',180,'delete_sspverificationretryconfig'),(720,'Can view sspv retry student argument',180,'view_sspverificationretryconfig'),(721,'Can add dark lang config',181,'add_darklangconfig'),(722,'Can change dark lang config',181,'change_darklangconfig'),(723,'Can delete dark lang config',181,'delete_darklangconfig'),(724,'Can view dark lang config',181,'view_darklangconfig'),(725,'Can add whitelisted rss url',182,'add_whitelistedrssurl'),(726,'Can change whitelisted rss url',182,'change_whitelistedrssurl'),(727,'Can delete whitelisted rss url',182,'delete_whitelistedrssurl'),(728,'Can view whitelisted rss url',182,'view_whitelistedrssurl'),(729,'Can add country',183,'add_country'),(730,'Can change country',183,'change_country'),(731,'Can delete country',183,'delete_country'),(732,'Can view country',183,'view_country'),(733,'Can add country access rule',184,'add_countryaccessrule'),(734,'Can change country access rule',184,'change_countryaccessrule'),(735,'Can delete country access rule',184,'delete_countryaccessrule'),(736,'Can view country access rule',184,'view_countryaccessrule'),(737,'Can add course access rule history',185,'add_courseaccessrulehistory'),(738,'Can change course access rule history',185,'change_courseaccessrulehistory'),(739,'Can delete course access rule history',185,'delete_courseaccessrulehistory'),(740,'Can view course access rule history',185,'view_courseaccessrulehistory'),(741,'Can add embargoed course',186,'add_embargoedcourse'),(742,'Can change embargoed course',186,'change_embargoedcourse'),(743,'Can delete embargoed course',186,'delete_embargoedcourse'),(744,'Can view embargoed course',186,'view_embargoedcourse'),(745,'Can add embargoed state',187,'add_embargoedstate'),(746,'Can change embargoed state',187,'change_embargoedstate'),(747,'Can delete embargoed state',187,'delete_embargoedstate'),(748,'Can view embargoed state',187,'view_embargoedstate'),(749,'Can add ip filter',188,'add_ipfilter'),(750,'Can change ip filter',188,'change_ipfilter'),(751,'Can delete ip filter',188,'delete_ipfilter'),(752,'Can view ip filter',188,'view_ipfilter'),(753,'Can add restricted course',189,'add_restrictedcourse'),(754,'Can change restricted course',189,'change_restrictedcourse'),(755,'Can delete restricted course',189,'delete_restrictedcourse'),(756,'Can view restricted course',189,'view_restrictedcourse'),(757,'Can add course rerun state',190,'add_coursererunstate'),(758,'Can change course rerun state',190,'change_coursererunstate'),(759,'Can delete course rerun state',190,'delete_coursererunstate'),(760,'Can view course rerun state',190,'view_coursererunstate'),(761,'Can add mobile api config',191,'add_mobileapiconfig'),(762,'Can change mobile api config',191,'change_mobileapiconfig'),(763,'Can delete mobile api config',191,'delete_mobileapiconfig'),(764,'Can view mobile api config',191,'view_mobileapiconfig'),(765,'Can add app version config',192,'add_appversionconfig'),(766,'Can change app version config',192,'change_appversionconfig'),(767,'Can delete app version config',192,'delete_appversionconfig'),(768,'Can view app version config',192,'view_appversionconfig'),(769,'Can add ignore mobile available flag config',193,'add_ignoremobileavailableflagconfig'),(770,'Can change ignore mobile available flag config',193,'change_ignoremobileavailableflagconfig'),(771,'Can delete ignore mobile available flag config',193,'delete_ignoremobileavailableflagconfig'),(772,'Can view ignore mobile available flag config',193,'view_ignoremobileavailableflagconfig'),(773,'Can add association',194,'add_association'),(774,'Can change association',194,'change_association'),(775,'Can delete association',194,'delete_association'),(776,'Can view association',194,'view_association'),(777,'Can add code',195,'add_code'),(778,'Can change code',195,'change_code'),(779,'Can delete code',195,'delete_code'),(780,'Can view code',195,'view_code'),(781,'Can add nonce',196,'add_nonce'),(782,'Can change nonce',196,'change_nonce'),(783,'Can delete nonce',196,'delete_nonce'),(784,'Can view nonce',196,'view_nonce'),(785,'Can add user social auth',197,'add_usersocialauth'),(786,'Can change user social auth',197,'change_usersocialauth'),(787,'Can delete user social auth',197,'delete_usersocialauth'),(788,'Can view user social auth',197,'view_usersocialauth'),(789,'Can add partial',198,'add_partial'),(790,'Can change partial',198,'change_partial'),(791,'Can delete partial',198,'delete_partial'),(792,'Can view partial',198,'view_partial'),(793,'Can add survey answer',199,'add_surveyanswer'),(794,'Can change survey answer',199,'change_surveyanswer'),(795,'Can delete survey answer',199,'delete_surveyanswer'),(796,'Can view survey answer',199,'view_surveyanswer'),(797,'Can add survey form',200,'add_surveyform'),(798,'Can change survey form',200,'change_surveyform'),(799,'Can delete survey form',200,'delete_surveyform'),(800,'Can view survey form',200,'view_surveyform'),(801,'Can add x block asides config',201,'add_xblockasidesconfig'),(802,'Can change x block asides config',201,'change_xblockasidesconfig'),(803,'Can delete x block asides config',201,'delete_xblockasidesconfig'),(804,'Can view x block asides config',201,'view_xblockasidesconfig'),(805,'Can add score',202,'add_score'),(806,'Can change score',202,'change_score'),(807,'Can delete score',202,'delete_score'),(808,'Can view score',202,'view_score'),(809,'Can add student item',203,'add_studentitem'),(810,'Can change student item',203,'change_studentitem'),(811,'Can delete student item',203,'delete_studentitem'),(812,'Can view student item',203,'view_studentitem'),(813,'Can add submission',204,'add_submission'),(814,'Can change submission',204,'change_submission'),(815,'Can delete submission',204,'delete_submission'),(816,'Can view submission',204,'view_submission'),(817,'Can add score summary',205,'add_scoresummary'),(818,'Can change score summary',205,'change_scoresummary'),(819,'Can delete score summary',205,'delete_scoresummary'),(820,'Can view score summary',205,'view_scoresummary'),(821,'Can add score annotation',206,'add_scoreannotation'),(822,'Can change score annotation',206,'change_scoreannotation'),(823,'Can delete score annotation',206,'delete_scoreannotation'),(824,'Can view score annotation',206,'view_scoreannotation'),(825,'Can add team submission',207,'add_teamsubmission'),(826,'Can change team submission',207,'change_teamsubmission'),(827,'Can delete team submission',207,'delete_teamsubmission'),(828,'Can view team submission',207,'view_teamsubmission'),(829,'Can add assessment',208,'add_assessment'),(830,'Can change assessment',208,'change_assessment'),(831,'Can delete assessment',208,'delete_assessment'),(832,'Can view assessment',208,'view_assessment'),(833,'Can add assessment feedback',209,'add_assessmentfeedback'),(834,'Can change assessment feedback',209,'change_assessmentfeedback'),(835,'Can delete assessment feedback',209,'delete_assessmentfeedback'),(836,'Can view assessment feedback',209,'view_assessmentfeedback'),(837,'Can add assessment feedback option',210,'add_assessmentfeedbackoption'),(838,'Can change assessment feedback option',210,'change_assessmentfeedbackoption'),(839,'Can delete assessment feedback option',210,'delete_assessmentfeedbackoption'),(840,'Can view assessment feedback option',210,'view_assessmentfeedbackoption'),(841,'Can add assessment part',211,'add_assessmentpart'),(842,'Can change assessment part',211,'change_assessmentpart'),(843,'Can delete assessment part',211,'delete_assessmentpart'),(844,'Can view assessment part',211,'view_assessmentpart'),(845,'Can add criterion',212,'add_criterion'),(846,'Can change criterion',212,'change_criterion'),(847,'Can delete criterion',212,'delete_criterion'),(848,'Can view criterion',212,'view_criterion'),(849,'Can add criterion option',213,'add_criterionoption'),(850,'Can change criterion option',213,'change_criterionoption'),(851,'Can delete criterion option',213,'delete_criterionoption'),(852,'Can view criterion option',213,'view_criterionoption'),(853,'Can add peer workflow',214,'add_peerworkflow'),(854,'Can change peer workflow',214,'change_peerworkflow'),(855,'Can delete peer workflow',214,'delete_peerworkflow'),(856,'Can view peer workflow',214,'view_peerworkflow'),(857,'Can add peer workflow item',215,'add_peerworkflowitem'),(858,'Can change peer workflow item',215,'change_peerworkflowitem'),(859,'Can delete peer workflow item',215,'delete_peerworkflowitem'),(860,'Can view peer workflow item',215,'view_peerworkflowitem'),(861,'Can add rubric',216,'add_rubric'),(862,'Can change rubric',216,'change_rubric'),(863,'Can delete rubric',216,'delete_rubric'),(864,'Can view rubric',216,'view_rubric'),(865,'Can add student training workflow',217,'add_studenttrainingworkflow'),(866,'Can change student training workflow',217,'change_studenttrainingworkflow'),(867,'Can delete student training workflow',217,'delete_studenttrainingworkflow'),(868,'Can view student training workflow',217,'view_studenttrainingworkflow'),(869,'Can add student training workflow item',218,'add_studenttrainingworkflowitem'),(870,'Can change student training workflow item',218,'change_studenttrainingworkflowitem'),(871,'Can delete student training workflow item',218,'delete_studenttrainingworkflowitem'),(872,'Can view student training workflow item',218,'view_studenttrainingworkflowitem'),(873,'Can add training example',219,'add_trainingexample'),(874,'Can change training example',219,'change_trainingexample'),(875,'Can delete training example',219,'delete_trainingexample'),(876,'Can view training example',219,'view_trainingexample'),(877,'Can add staff workflow',220,'add_staffworkflow'),(878,'Can change staff workflow',220,'change_staffworkflow'),(879,'Can delete staff workflow',220,'delete_staffworkflow'),(880,'Can view staff workflow',220,'view_staffworkflow'),(881,'Can add historical shared file upload',221,'add_historicalsharedfileupload'),(882,'Can change historical shared file upload',221,'change_historicalsharedfileupload'),(883,'Can delete historical shared file upload',221,'delete_historicalsharedfileupload'),(884,'Can view historical shared file upload',221,'view_historicalsharedfileupload'),(885,'Can add shared file upload',222,'add_sharedfileupload'),(886,'Can change shared file upload',222,'change_sharedfileupload'),(887,'Can delete shared file upload',222,'delete_sharedfileupload'),(888,'Can view shared file upload',222,'view_sharedfileupload'),(889,'Can add team staff workflow',223,'add_teamstaffworkflow'),(890,'Can change team staff workflow',223,'change_teamstaffworkflow'),(891,'Can delete team staff workflow',223,'delete_teamstaffworkflow'),(892,'Can view team staff workflow',223,'view_teamstaffworkflow'),(893,'Can add assessment workflow',224,'add_assessmentworkflow'),(894,'Can change assessment workflow',224,'change_assessmentworkflow'),(895,'Can delete assessment workflow',224,'delete_assessmentworkflow'),(896,'Can view assessment workflow',224,'view_assessmentworkflow'),(897,'Can add assessment workflow cancellation',225,'add_assessmentworkflowcancellation'),(898,'Can change assessment workflow cancellation',225,'change_assessmentworkflowcancellation'),(899,'Can delete assessment workflow cancellation',225,'delete_assessmentworkflowcancellation'),(900,'Can view assessment workflow cancellation',225,'view_assessmentworkflowcancellation'),(901,'Can add assessment workflow step',226,'add_assessmentworkflowstep'),(902,'Can change assessment workflow step',226,'change_assessmentworkflowstep'),(903,'Can delete assessment workflow step',226,'delete_assessmentworkflowstep'),(904,'Can view assessment workflow step',226,'view_assessmentworkflowstep'),(905,'Can add team assessment workflow',227,'add_teamassessmentworkflow'),(906,'Can change team assessment workflow',227,'change_teamassessmentworkflow'),(907,'Can delete team assessment workflow',227,'delete_teamassessmentworkflow'),(908,'Can view team assessment workflow',227,'view_teamassessmentworkflow'),(909,'Can add profile',228,'add_profile'),(910,'Can change profile',228,'change_profile'),(911,'Can delete profile',228,'delete_profile'),(912,'Can view profile',228,'view_profile'),(913,'Can add video',229,'add_video'),(914,'Can change video',229,'change_video'),(915,'Can delete video',229,'delete_video'),(916,'Can view video',229,'view_video'),(917,'Can add encoded video',230,'add_encodedvideo'),(918,'Can change encoded video',230,'change_encodedvideo'),(919,'Can delete encoded video',230,'delete_encodedvideo'),(920,'Can view encoded video',230,'view_encodedvideo'),(921,'Can add course video',231,'add_coursevideo'),(922,'Can change course video',231,'change_coursevideo'),(923,'Can delete course video',231,'delete_coursevideo'),(924,'Can view course video',231,'view_coursevideo'),(925,'Can add video image',232,'add_videoimage'),(926,'Can change video image',232,'change_videoimage'),(927,'Can delete video image',232,'delete_videoimage'),(928,'Can view video image',232,'view_videoimage'),(929,'Can add transcript preference',233,'add_transcriptpreference'),(930,'Can change transcript preference',233,'change_transcriptpreference'),(931,'Can delete transcript preference',233,'delete_transcriptpreference'),(932,'Can view transcript preference',233,'view_transcriptpreference'),(933,'Can add video transcript',234,'add_videotranscript'),(934,'Can change video transcript',234,'change_videotranscript'),(935,'Can delete video transcript',234,'delete_videotranscript'),(936,'Can view video transcript',234,'view_videotranscript'),(937,'Can add third party transcript credentials state',235,'add_thirdpartytranscriptcredentialsstate'),(938,'Can change third party transcript credentials state',235,'change_thirdpartytranscriptcredentialsstate'),(939,'Can delete third party transcript credentials state',235,'delete_thirdpartytranscriptcredentialsstate'),(940,'Can view third party transcript credentials state',235,'view_thirdpartytranscriptcredentialsstate'),(941,'Can add course overview',236,'add_courseoverview'),(942,'Can change course overview',236,'change_courseoverview'),(943,'Can delete course overview',236,'delete_courseoverview'),(944,'Can view course overview',236,'view_courseoverview'),(945,'Can add course overview tab',237,'add_courseoverviewtab'),(946,'Can change course overview tab',237,'change_courseoverviewtab'),(947,'Can delete course overview tab',237,'delete_courseoverviewtab'),(948,'Can view course overview tab',237,'view_courseoverviewtab'),(949,'Can add course overview image set',238,'add_courseoverviewimageset'),(950,'Can change course overview image set',238,'change_courseoverviewimageset'),(951,'Can delete course overview image set',238,'delete_courseoverviewimageset'),(952,'Can view course overview image set',238,'view_courseoverviewimageset'),(953,'Can add course overview image config',239,'add_courseoverviewimageconfig'),(954,'Can change course overview image config',239,'change_courseoverviewimageconfig'),(955,'Can delete course overview image config',239,'delete_courseoverviewimageconfig'),(956,'Can view course overview image config',239,'view_courseoverviewimageconfig'),(957,'Can add historical course overview',240,'add_historicalcourseoverview'),(958,'Can change historical course overview',240,'change_historicalcourseoverview'),(959,'Can delete historical course overview',240,'delete_historicalcourseoverview'),(960,'Can view historical course overview',240,'view_historicalcourseoverview'),(961,'Can add simulate_publish argument',241,'add_simulatecoursepublishconfig'),(962,'Can change simulate_publish argument',241,'change_simulatecoursepublishconfig'),(963,'Can delete simulate_publish argument',241,'delete_simulatecoursepublishconfig'),(964,'Can view simulate_publish argument',241,'view_simulatecoursepublishconfig'),(965,'Can add block structure configuration',242,'add_blockstructureconfiguration'),(966,'Can change block structure configuration',242,'change_blockstructureconfiguration'),(967,'Can delete block structure configuration',242,'delete_blockstructureconfiguration'),(968,'Can view block structure configuration',242,'view_blockstructureconfiguration'),(969,'Can add block structure model',243,'add_blockstructuremodel'),(970,'Can change block structure model',243,'change_blockstructuremodel'),(971,'Can delete block structure model',243,'delete_blockstructuremodel'),(972,'Can view block structure model',243,'view_blockstructuremodel'),(973,'Can add x domain proxy configuration',244,'add_xdomainproxyconfiguration'),(974,'Can change x domain proxy configuration',244,'change_xdomainproxyconfiguration'),(975,'Can delete x domain proxy configuration',244,'delete_xdomainproxyconfiguration'),(976,'Can view x domain proxy configuration',244,'view_xdomainproxyconfiguration'),(977,'Can add commerce configuration',245,'add_commerceconfiguration'),(978,'Can change commerce configuration',245,'change_commerceconfiguration'),(979,'Can delete commerce configuration',245,'delete_commerceconfiguration'),(980,'Can view commerce configuration',245,'view_commerceconfiguration'),(981,'Can add credit course',246,'add_creditcourse'),(982,'Can change credit course',246,'change_creditcourse'),(983,'Can delete credit course',246,'delete_creditcourse'),(984,'Can view credit course',246,'view_creditcourse'),(985,'Can add credit eligibility',247,'add_crediteligibility'),(986,'Can change credit eligibility',247,'change_crediteligibility'),(987,'Can delete credit eligibility',247,'delete_crediteligibility'),(988,'Can view credit eligibility',247,'view_crediteligibility'),(989,'Can add credit provider',248,'add_creditprovider'),(990,'Can change credit provider',248,'change_creditprovider'),(991,'Can delete credit provider',248,'delete_creditprovider'),(992,'Can view credit provider',248,'view_creditprovider'),(993,'Can add credit request',249,'add_creditrequest'),(994,'Can change credit request',249,'change_creditrequest'),(995,'Can delete credit request',249,'delete_creditrequest'),(996,'Can view credit request',249,'view_creditrequest'),(997,'Can add credit requirement',250,'add_creditrequirement'),(998,'Can change credit requirement',250,'change_creditrequirement'),(999,'Can delete credit requirement',250,'delete_creditrequirement'),(1000,'Can view credit requirement',250,'view_creditrequirement'),(1001,'Can add credit requirement status',251,'add_creditrequirementstatus'),(1002,'Can change credit requirement status',251,'change_creditrequirementstatus'),(1003,'Can delete credit requirement status',251,'delete_creditrequirementstatus'),(1004,'Can view credit requirement status',251,'view_creditrequirementstatus'),(1005,'Can add credit config',252,'add_creditconfig'),(1006,'Can change credit config',252,'change_creditconfig'),(1007,'Can delete credit config',252,'delete_creditconfig'),(1008,'Can view credit config',252,'view_creditconfig'),(1009,'Can add course team',253,'add_courseteam'),(1010,'Can change course team',253,'change_courseteam'),(1011,'Can delete course team',253,'delete_courseteam'),(1012,'Can view course team',253,'view_courseteam'),(1013,'Can add course team membership',254,'add_courseteammembership'),(1014,'Can change course team membership',254,'change_courseteammembership'),(1015,'Can delete course team membership',254,'delete_courseteammembership'),(1016,'Can view course team membership',254,'view_courseteammembership'),(1017,'Can add x block configuration',255,'add_xblockconfiguration'),(1018,'Can change x block configuration',255,'change_xblockconfiguration'),(1019,'Can delete x block configuration',255,'delete_xblockconfiguration'),(1020,'Can view x block configuration',255,'view_xblockconfiguration'),(1021,'Can add x block studio configuration',256,'add_xblockstudioconfiguration'),(1022,'Can change x block studio configuration',256,'change_xblockstudioconfiguration'),(1023,'Can delete x block studio configuration',256,'delete_xblockstudioconfiguration'),(1024,'Can view x block studio configuration',256,'view_xblockstudioconfiguration'),(1025,'Can add x block studio configuration flag',257,'add_xblockstudioconfigurationflag'),(1026,'Can change x block studio configuration flag',257,'change_xblockstudioconfigurationflag'),(1027,'Can delete x block studio configuration flag',257,'delete_xblockstudioconfigurationflag'),(1028,'Can view x block studio configuration flag',257,'view_xblockstudioconfigurationflag'),(1029,'Can add programs api config',258,'add_programsapiconfig'),(1030,'Can change programs api config',258,'change_programsapiconfig'),(1031,'Can delete programs api config',258,'delete_programsapiconfig'),(1032,'Can view programs api config',258,'view_programsapiconfig'),(1033,'Can add backpopulate_program_credentials argument',259,'add_customprogramsconfig'),(1034,'Can change backpopulate_program_credentials argument',259,'change_customprogramsconfig'),(1035,'Can delete backpopulate_program_credentials argument',259,'delete_customprogramsconfig'),(1036,'Can view backpopulate_program_credentials argument',259,'view_customprogramsconfig'),(1037,'Can add catalog integration',260,'add_catalogintegration'),(1038,'Can change catalog integration',260,'change_catalogintegration'),(1039,'Can delete catalog integration',260,'delete_catalogintegration'),(1040,'Can view catalog integration',260,'view_catalogintegration'),(1041,'Can add self paced configuration',261,'add_selfpacedconfiguration'),(1042,'Can change self paced configuration',261,'change_selfpacedconfiguration'),(1043,'Can delete self paced configuration',261,'delete_selfpacedconfiguration'),(1044,'Can view self paced configuration',261,'view_selfpacedconfiguration'),(1045,'Can add kv store',262,'add_kvstore'),(1046,'Can change kv store',262,'change_kvstore'),(1047,'Can delete kv store',262,'delete_kvstore'),(1048,'Can view kv store',262,'view_kvstore'),(1049,'Can add course content milestone',263,'add_coursecontentmilestone'),(1050,'Can change course content milestone',263,'change_coursecontentmilestone'),(1051,'Can delete course content milestone',263,'delete_coursecontentmilestone'),(1052,'Can view course content milestone',263,'view_coursecontentmilestone'),(1053,'Can add course milestone',264,'add_coursemilestone'),(1054,'Can change course milestone',264,'change_coursemilestone'),(1055,'Can delete course milestone',264,'delete_coursemilestone'),(1056,'Can view course milestone',264,'view_coursemilestone'),(1057,'Can add milestone',265,'add_milestone'),(1058,'Can change milestone',265,'change_milestone'),(1059,'Can delete milestone',265,'delete_milestone'),(1060,'Can view milestone',265,'view_milestone'),(1061,'Can add milestone relationship type',266,'add_milestonerelationshiptype'),(1062,'Can change milestone relationship type',266,'change_milestonerelationshiptype'),(1063,'Can delete milestone relationship type',266,'delete_milestonerelationshiptype'),(1064,'Can view milestone relationship type',266,'view_milestonerelationshiptype'),(1065,'Can add user milestone',267,'add_usermilestone'),(1066,'Can change user milestone',267,'change_usermilestone'),(1067,'Can delete user milestone',267,'delete_usermilestone'),(1068,'Can view user milestone',267,'view_usermilestone'),(1069,'Can add api access request',1,'add_apiaccessrequest'),(1070,'Can change api access request',1,'change_apiaccessrequest'),(1071,'Can delete api access request',1,'delete_apiaccessrequest'),(1072,'Can view api access request',1,'view_apiaccessrequest'),(1073,'Can add api access config',268,'add_apiaccessconfig'),(1074,'Can change api access config',268,'change_apiaccessconfig'),(1075,'Can delete api access config',268,'delete_apiaccessconfig'),(1076,'Can view api access config',268,'view_apiaccessconfig'),(1077,'Can add catalog',269,'add_catalog'),(1078,'Can change catalog',269,'change_catalog'),(1079,'Can delete catalog',269,'delete_catalog'),(1080,'Can view catalog',269,'view_catalog'),(1081,'Can add verified track cohorted course',270,'add_verifiedtrackcohortedcourse'),(1082,'Can change verified track cohorted course',270,'change_verifiedtrackcohortedcourse'),(1083,'Can delete verified track cohorted course',270,'delete_verifiedtrackcohortedcourse'),(1084,'Can view verified track cohorted course',270,'view_verifiedtrackcohortedcourse'),(1085,'Can add migrate verified track cohorts setting',271,'add_migrateverifiedtrackcohortssetting'),(1086,'Can change migrate verified track cohorts setting',271,'change_migrateverifiedtrackcohortssetting'),(1087,'Can delete migrate verified track cohorts setting',271,'delete_migrateverifiedtrackcohortssetting'),(1088,'Can view migrate verified track cohorts setting',271,'view_migrateverifiedtrackcohortssetting'),(1089,'Can add badge assertion',272,'add_badgeassertion'),(1090,'Can change badge assertion',272,'change_badgeassertion'),(1091,'Can delete badge assertion',272,'delete_badgeassertion'),(1092,'Can view badge assertion',272,'view_badgeassertion'),(1093,'Can add badge class',273,'add_badgeclass'),(1094,'Can change badge class',273,'change_badgeclass'),(1095,'Can delete badge class',273,'delete_badgeclass'),(1096,'Can view badge class',273,'view_badgeclass'),(1097,'Can add course complete image configuration',274,'add_coursecompleteimageconfiguration'),(1098,'Can change course complete image configuration',274,'change_coursecompleteimageconfiguration'),(1099,'Can delete course complete image configuration',274,'delete_coursecompleteimageconfiguration'),(1100,'Can view course complete image configuration',274,'view_coursecompleteimageconfiguration'),(1101,'Can add course event badges configuration',275,'add_courseeventbadgesconfiguration'),(1102,'Can change course event badges configuration',275,'change_courseeventbadgesconfiguration'),(1103,'Can delete course event badges configuration',275,'delete_courseeventbadgesconfiguration'),(1104,'Can view course event badges configuration',275,'view_courseeventbadgesconfiguration'),(1105,'Can add email marketing configuration',276,'add_emailmarketingconfiguration'),(1106,'Can change email marketing configuration',276,'change_emailmarketingconfiguration'),(1107,'Can delete email marketing configuration',276,'delete_emailmarketingconfiguration'),(1108,'Can view email marketing configuration',276,'view_emailmarketingconfiguration'),(1109,'Can add failed task',277,'add_failedtask'),(1110,'Can change failed task',277,'change_failedtask'),(1111,'Can delete failed task',277,'delete_failedtask'),(1112,'Can view failed task',277,'view_failedtask'),(1113,'Can add crawlers config',278,'add_crawlersconfig'),(1114,'Can change crawlers config',278,'change_crawlersconfig'),(1115,'Can delete crawlers config',278,'delete_crawlersconfig'),(1116,'Can view crawlers config',278,'view_crawlersconfig'),(1117,'Can add Waffle flag course override',279,'add_waffleflagcourseoverridemodel'),(1118,'Can change Waffle flag course override',279,'change_waffleflagcourseoverridemodel'),(1119,'Can delete Waffle flag course override',279,'delete_waffleflagcourseoverridemodel'),(1120,'Can view Waffle flag course override',279,'view_waffleflagcourseoverridemodel'),(1121,'Can add course goal',280,'add_coursegoal'),(1122,'Can change course goal',280,'change_coursegoal'),(1123,'Can delete course goal',280,'delete_coursegoal'),(1124,'Can view course goal',280,'view_coursegoal'),(1125,'Can add historical user calendar sync config',281,'add_historicalusercalendarsyncconfig'),(1126,'Can change historical user calendar sync config',281,'change_historicalusercalendarsyncconfig'),(1127,'Can delete historical user calendar sync config',281,'delete_historicalusercalendarsyncconfig'),(1128,'Can view historical user calendar sync config',281,'view_historicalusercalendarsyncconfig'),(1129,'Can add user calendar sync config',282,'add_usercalendarsyncconfig'),(1130,'Can change user calendar sync config',282,'change_usercalendarsyncconfig'),(1131,'Can delete user calendar sync config',282,'delete_usercalendarsyncconfig'),(1132,'Can view user calendar sync config',282,'view_usercalendarsyncconfig'),(1133,'Can add course duration limit config',283,'add_coursedurationlimitconfig'),(1134,'Can change course duration limit config',283,'change_coursedurationlimitconfig'),(1135,'Can delete course duration limit config',283,'delete_coursedurationlimitconfig'),(1136,'Can view course duration limit config',283,'view_coursedurationlimitconfig'),(1137,'Can add content type gating config',284,'add_contenttypegatingconfig'),(1138,'Can change content type gating config',284,'change_contenttypegatingconfig'),(1139,'Can delete content type gating config',284,'delete_contenttypegatingconfig'),(1140,'Can view content type gating config',284,'view_contenttypegatingconfig'),(1141,'Can add discount restriction config',285,'add_discountrestrictionconfig'),(1142,'Can change discount restriction config',285,'change_discountrestrictionconfig'),(1143,'Can delete discount restriction config',285,'delete_discountrestrictionconfig'),(1144,'Can view discount restriction config',285,'view_discountrestrictionconfig'),(1145,'Can add discount percentage config',286,'add_discountpercentageconfig'),(1146,'Can change discount percentage config',286,'change_discountpercentageconfig'),(1147,'Can delete discount percentage config',286,'delete_discountpercentageconfig'),(1148,'Can view discount percentage config',286,'view_discountpercentageconfig'),(1149,'Can add Experiment Data',287,'add_experimentdata'),(1150,'Can change Experiment Data',287,'change_experimentdata'),(1151,'Can delete Experiment Data',287,'delete_experimentdata'),(1152,'Can view Experiment Data',287,'view_experimentdata'),(1153,'Can add Experiment Key-Value Pair',288,'add_experimentkeyvalue'),(1154,'Can change Experiment Key-Value Pair',288,'change_experimentkeyvalue'),(1155,'Can delete Experiment Key-Value Pair',288,'delete_experimentkeyvalue'),(1156,'Can view Experiment Key-Value Pair',288,'view_experimentkeyvalue'),(1157,'Can add historical Experiment Key-Value Pair',289,'add_historicalexperimentkeyvalue'),(1158,'Can change historical Experiment Key-Value Pair',289,'change_historicalexperimentkeyvalue'),(1159,'Can delete historical Experiment Key-Value Pair',289,'delete_historicalexperimentkeyvalue'),(1160,'Can view historical Experiment Key-Value Pair',289,'view_historicalexperimentkeyvalue'),(1161,'Can add self paced relative dates config',290,'add_selfpacedrelativedatesconfig'),(1162,'Can change self paced relative dates config',290,'change_selfpacedrelativedatesconfig'),(1163,'Can delete self paced relative dates config',290,'delete_selfpacedrelativedatesconfig'),(1164,'Can view self paced relative dates config',290,'view_selfpacedrelativedatesconfig'),(1165,'Can add external id',291,'add_externalid'),(1166,'Can change external id',291,'change_externalid'),(1167,'Can delete external id',291,'delete_externalid'),(1168,'Can view external id',291,'view_externalid'),(1169,'Can add external id type',292,'add_externalidtype'),(1170,'Can change external id type',292,'change_externalidtype'),(1171,'Can delete external id type',292,'delete_externalidtype'),(1172,'Can view external id type',292,'view_externalidtype'),(1173,'Can add historical external id',293,'add_historicalexternalid'),(1174,'Can change historical external id',293,'change_historicalexternalid'),(1175,'Can delete historical external id',293,'delete_historicalexternalid'),(1176,'Can view historical external id',293,'view_historicalexternalid'),(1177,'Can add historical external id type',294,'add_historicalexternalidtype'),(1178,'Can change historical external id type',294,'change_historicalexternalidtype'),(1179,'Can delete historical external id type',294,'delete_historicalexternalidtype'),(1180,'Can view historical external id type',294,'view_historicalexternalidtype'),(1181,'Can add user demographic',295,'add_userdemographics'),(1182,'Can change user demographic',295,'change_userdemographics'),(1183,'Can delete user demographic',295,'delete_userdemographics'),(1184,'Can view user demographic',295,'view_userdemographics'),(1185,'Can add historical user demographic',296,'add_historicaluserdemographics'),(1186,'Can change historical user demographic',296,'change_historicaluserdemographics'),(1187,'Can delete historical user demographic',296,'delete_historicaluserdemographics'),(1188,'Can view historical user demographic',296,'view_historicaluserdemographics'),(1189,'Can add Schedule',297,'add_schedule'),(1190,'Can change Schedule',297,'change_schedule'),(1191,'Can delete Schedule',297,'delete_schedule'),(1192,'Can view Schedule',297,'view_schedule'),(1193,'Can add schedule config',298,'add_scheduleconfig'),(1194,'Can change schedule config',298,'change_scheduleconfig'),(1195,'Can delete schedule config',298,'delete_scheduleconfig'),(1196,'Can view schedule config',298,'view_scheduleconfig'),(1197,'Can add schedule experience',299,'add_scheduleexperience'),(1198,'Can change schedule experience',299,'change_scheduleexperience'),(1199,'Can delete schedule experience',299,'delete_scheduleexperience'),(1200,'Can view schedule experience',299,'view_scheduleexperience'),(1201,'Can add historical Schedule',300,'add_historicalschedule'),(1202,'Can change historical Schedule',300,'change_historicalschedule'),(1203,'Can delete historical Schedule',300,'delete_historicalschedule'),(1204,'Can view historical Schedule',300,'view_historicalschedule'),(1205,'Can add course section',301,'add_coursesection'),(1206,'Can change course section',301,'change_coursesection'),(1207,'Can delete course section',301,'delete_coursesection'),(1208,'Can view course section',301,'view_coursesection'),(1209,'Can add course section sequence',302,'add_coursesectionsequence'),(1210,'Can change course section sequence',302,'change_coursesectionsequence'),(1211,'Can delete course section sequence',302,'delete_coursesectionsequence'),(1212,'Can view course section sequence',302,'view_coursesectionsequence'),(1213,'Can add learning context',303,'add_learningcontext'),(1214,'Can change learning context',303,'change_learningcontext'),(1215,'Can delete learning context',303,'delete_learningcontext'),(1216,'Can view learning context',303,'view_learningcontext'),(1217,'Can add learning sequence',304,'add_learningsequence'),(1218,'Can change learning sequence',304,'change_learningsequence'),(1219,'Can delete learning sequence',304,'delete_learningsequence'),(1220,'Can view learning sequence',304,'view_learningsequence'),(1221,'Can add course context',305,'add_coursecontext'),(1222,'Can change course context',305,'change_coursecontext'),(1223,'Can delete course context',305,'delete_coursecontext'),(1224,'Can view course context',305,'view_coursecontext'),(1225,'Can add organization',306,'add_organization'),(1226,'Can change organization',306,'change_organization'),(1227,'Can delete organization',306,'delete_organization'),(1228,'Can view organization',306,'view_organization'),(1229,'Can add Link Course',307,'add_organizationcourse'),(1230,'Can change Link Course',307,'change_organizationcourse'),(1231,'Can delete Link Course',307,'delete_organizationcourse'),(1232,'Can view Link Course',307,'view_organizationcourse'),(1233,'Can add historical organization',308,'add_historicalorganization'),(1234,'Can change historical organization',308,'change_historicalorganization'),(1235,'Can delete historical organization',308,'delete_historicalorganization'),(1236,'Can view historical organization',308,'view_historicalorganization'),(1237,'Can add enrollment notification email template',309,'add_enrollmentnotificationemailtemplate'),(1238,'Can change enrollment notification email template',309,'change_enrollmentnotificationemailtemplate'),(1239,'Can delete enrollment notification email template',309,'delete_enrollmentnotificationemailtemplate'),(1240,'Can view enrollment notification email template',309,'view_enrollmentnotificationemailtemplate'),(1241,'Can add Enterprise Catalog Query',310,'add_enterprisecatalogquery'),(1242,'Can change Enterprise Catalog Query',310,'change_enterprisecatalogquery'),(1243,'Can delete Enterprise Catalog Query',310,'delete_enterprisecatalogquery'),(1244,'Can view Enterprise Catalog Query',310,'view_enterprisecatalogquery'),(1245,'Can add enterprise course enrollment',311,'add_enterprisecourseenrollment'),(1246,'Can change enterprise course enrollment',311,'change_enterprisecourseenrollment'),(1247,'Can delete enterprise course enrollment',311,'delete_enterprisecourseenrollment'),(1248,'Can view enterprise course enrollment',311,'view_enterprisecourseenrollment'),(1249,'Can add Enterprise Customer',312,'add_enterprisecustomer'),(1250,'Can change Enterprise Customer',312,'change_enterprisecustomer'),(1251,'Can delete Enterprise Customer',312,'delete_enterprisecustomer'),(1252,'Can view Enterprise Customer',312,'view_enterprisecustomer'),(1253,'Can add Branding Configuration',313,'add_enterprisecustomerbrandingconfiguration'),(1254,'Can change Branding Configuration',313,'change_enterprisecustomerbrandingconfiguration'),(1255,'Can delete Branding Configuration',313,'delete_enterprisecustomerbrandingconfiguration'),(1256,'Can view Branding Configuration',313,'view_enterprisecustomerbrandingconfiguration'),(1257,'Can add Enterprise Customer Catalog',314,'add_enterprisecustomercatalog'),(1258,'Can change Enterprise Customer Catalog',314,'change_enterprisecustomercatalog'),(1259,'Can delete Enterprise Customer Catalog',314,'delete_enterprisecustomercatalog'),(1260,'Can view Enterprise Customer Catalog',314,'view_enterprisecustomercatalog'),(1261,'Can add enterprise customer identity provider',315,'add_enterprisecustomeridentityprovider'),(1262,'Can change enterprise customer identity provider',315,'change_enterprisecustomeridentityprovider'),(1263,'Can delete enterprise customer identity provider',315,'delete_enterprisecustomeridentityprovider'),(1264,'Can view enterprise customer identity provider',315,'view_enterprisecustomeridentityprovider'),(1265,'Can add enterprise customer reporting configuration',316,'add_enterprisecustomerreportingconfiguration'),(1266,'Can change enterprise customer reporting configuration',316,'change_enterprisecustomerreportingconfiguration'),(1267,'Can delete enterprise customer reporting configuration',316,'delete_enterprisecustomerreportingconfiguration'),(1268,'Can view enterprise customer reporting configuration',316,'view_enterprisecustomerreportingconfiguration'),(1269,'Can add Enterprise Customer Type',317,'add_enterprisecustomertype'),(1270,'Can change Enterprise Customer Type',317,'change_enterprisecustomertype'),(1271,'Can delete Enterprise Customer Type',317,'delete_enterprisecustomertype'),(1272,'Can view Enterprise Customer Type',317,'view_enterprisecustomertype'),(1273,'Can add Enterprise Customer Learner',318,'add_enterprisecustomeruser'),(1274,'Can change Enterprise Customer Learner',318,'change_enterprisecustomeruser'),(1275,'Can delete Enterprise Customer Learner',318,'delete_enterprisecustomeruser'),(1276,'Can view Enterprise Customer Learner',318,'view_enterprisecustomeruser'),(1277,'Can add enterprise enrollment source',319,'add_enterpriseenrollmentsource'),(1278,'Can change enterprise enrollment source',319,'change_enterpriseenrollmentsource'),(1279,'Can delete enterprise enrollment source',319,'delete_enterpriseenrollmentsource'),(1280,'Can view enterprise enrollment source',319,'view_enterpriseenrollmentsource'),(1281,'Can add enterprise feature role',320,'add_enterprisefeaturerole'),(1282,'Can change enterprise feature role',320,'change_enterprisefeaturerole'),(1283,'Can delete enterprise feature role',320,'delete_enterprisefeaturerole'),(1284,'Can view enterprise feature role',320,'view_enterprisefeaturerole'),(1285,'Can add enterprise feature user role assignment',321,'add_enterprisefeatureuserroleassignment'),(1286,'Can change enterprise feature user role assignment',321,'change_enterprisefeatureuserroleassignment'),(1287,'Can delete enterprise feature user role assignment',321,'delete_enterprisefeatureuserroleassignment'),(1288,'Can view enterprise feature user role assignment',321,'view_enterprisefeatureuserroleassignment'),(1289,'Can add historical enrollment notification email template',322,'add_historicalenrollmentnotificationemailtemplate'),(1290,'Can change historical enrollment notification email template',322,'change_historicalenrollmentnotificationemailtemplate'),(1291,'Can delete historical enrollment notification email template',322,'delete_historicalenrollmentnotificationemailtemplate'),(1292,'Can view historical enrollment notification email template',322,'view_historicalenrollmentnotificationemailtemplate'),(1293,'Can add historical enterprise course enrollment',323,'add_historicalenterprisecourseenrollment'),(1294,'Can change historical enterprise course enrollment',323,'change_historicalenterprisecourseenrollment'),(1295,'Can delete historical enterprise course enrollment',323,'delete_historicalenterprisecourseenrollment'),(1296,'Can view historical enterprise course enrollment',323,'view_historicalenterprisecourseenrollment'),(1297,'Can add historical Enterprise Customer',324,'add_historicalenterprisecustomer'),(1298,'Can change historical Enterprise Customer',324,'change_historicalenterprisecustomer'),(1299,'Can delete historical Enterprise Customer',324,'delete_historicalenterprisecustomer'),(1300,'Can view historical Enterprise Customer',324,'view_historicalenterprisecustomer'),(1301,'Can add historical Enterprise Customer Catalog',325,'add_historicalenterprisecustomercatalog'),(1302,'Can change historical Enterprise Customer Catalog',325,'change_historicalenterprisecustomercatalog'),(1303,'Can delete historical Enterprise Customer Catalog',325,'delete_historicalenterprisecustomercatalog'),(1304,'Can view historical Enterprise Customer Catalog',325,'view_historicalenterprisecustomercatalog'),(1305,'Can add historical pending enrollment',326,'add_historicalpendingenrollment'),(1306,'Can change historical pending enrollment',326,'change_historicalpendingenrollment'),(1307,'Can delete historical pending enrollment',326,'delete_historicalpendingenrollment'),(1308,'Can view historical pending enrollment',326,'view_historicalpendingenrollment'),(1309,'Can add historical pending enterprise customer user',327,'add_historicalpendingenterprisecustomeruser'),(1310,'Can change historical pending enterprise customer user',327,'change_historicalpendingenterprisecustomeruser'),(1311,'Can delete historical pending enterprise customer user',327,'delete_historicalpendingenterprisecustomeruser'),(1312,'Can view historical pending enterprise customer user',327,'view_historicalpendingenterprisecustomeruser'),(1313,'Can add pending enrollment',328,'add_pendingenrollment'),(1314,'Can change pending enrollment',328,'change_pendingenrollment'),(1315,'Can delete pending enrollment',328,'delete_pendingenrollment'),(1316,'Can view pending enrollment',328,'view_pendingenrollment'),(1317,'Can add pending enterprise customer user',329,'add_pendingenterprisecustomeruser'),(1318,'Can change pending enterprise customer user',329,'change_pendingenterprisecustomeruser'),(1319,'Can delete pending enterprise customer user',329,'delete_pendingenterprisecustomeruser'),(1320,'Can view pending enterprise customer user',329,'view_pendingenterprisecustomeruser'),(1321,'Can add system wide enterprise role',330,'add_systemwideenterpriserole'),(1322,'Can change system wide enterprise role',330,'change_systemwideenterpriserole'),(1323,'Can delete system wide enterprise role',330,'delete_systemwideenterpriserole'),(1324,'Can view system wide enterprise role',330,'view_systemwideenterpriserole'),(1325,'Can add system wide enterprise user role assignment',331,'add_systemwideenterpriseuserroleassignment'),(1326,'Can change system wide enterprise user role assignment',331,'change_systemwideenterpriseuserroleassignment'),(1327,'Can delete system wide enterprise user role assignment',331,'delete_systemwideenterpriseuserroleassignment'),(1328,'Can view system wide enterprise user role assignment',331,'view_systemwideenterpriseuserroleassignment'),(1329,'Can add licensed enterprise course enrollment',332,'add_licensedenterprisecourseenrollment'),(1330,'Can change licensed enterprise course enrollment',332,'change_licensedenterprisecourseenrollment'),(1331,'Can delete licensed enterprise course enrollment',332,'delete_licensedenterprisecourseenrollment'),(1332,'Can view licensed enterprise course enrollment',332,'view_licensedenterprisecourseenrollment'),(1333,'Can add historical licensed enterprise course enrollment',333,'add_historicallicensedenterprisecourseenrollment'),(1334,'Can change historical licensed enterprise course enrollment',333,'change_historicallicensedenterprisecourseenrollment'),(1335,'Can delete historical licensed enterprise course enrollment',333,'delete_historicallicensedenterprisecourseenrollment'),(1336,'Can view historical licensed enterprise course enrollment',333,'view_historicallicensedenterprisecourseenrollment'),(1337,'Can add historical pending enterprise customer admin user',334,'add_historicalpendingenterprisecustomeradminuser'),(1338,'Can change historical pending enterprise customer admin user',334,'change_historicalpendingenterprisecustomeradminuser'),(1339,'Can delete historical pending enterprise customer admin user',334,'delete_historicalpendingenterprisecustomeradminuser'),(1340,'Can view historical pending enterprise customer admin user',334,'view_historicalpendingenterprisecustomeradminuser'),(1341,'Can add pending enterprise customer admin user',335,'add_pendingenterprisecustomeradminuser'),(1342,'Can change pending enterprise customer admin user',335,'change_pendingenterprisecustomeradminuser'),(1343,'Can delete pending enterprise customer admin user',335,'delete_pendingenterprisecustomeradminuser'),(1344,'Can view pending enterprise customer admin user',335,'view_pendingenterprisecustomeradminuser'),(1345,'Can add Data Sharing Consent Record',336,'add_datasharingconsent'),(1346,'Can change Data Sharing Consent Record',336,'change_datasharingconsent'),(1347,'Can delete Data Sharing Consent Record',336,'delete_datasharingconsent'),(1348,'Can view Data Sharing Consent Record',336,'view_datasharingconsent'),(1349,'Can add historical Data Sharing Consent Record',337,'add_historicaldatasharingconsent'),(1350,'Can change historical Data Sharing Consent Record',337,'change_historicaldatasharingconsent'),(1351,'Can delete historical Data Sharing Consent Record',337,'delete_historicaldatasharingconsent'),(1352,'Can view historical Data Sharing Consent Record',337,'view_historicaldatasharingconsent'),(1353,'Can add data sharing consent text overrides',338,'add_datasharingconsenttextoverrides'),(1354,'Can change data sharing consent text overrides',338,'change_datasharingconsenttextoverrides'),(1355,'Can delete data sharing consent text overrides',338,'delete_datasharingconsenttextoverrides'),(1356,'Can view data sharing consent text overrides',338,'view_datasharingconsenttextoverrides'),(1357,'Can add learner data transmission audit',339,'add_learnerdatatransmissionaudit'),(1358,'Can change learner data transmission audit',339,'change_learnerdatatransmissionaudit'),(1359,'Can delete learner data transmission audit',339,'delete_learnerdatatransmissionaudit'),(1360,'Can view learner data transmission audit',339,'view_learnerdatatransmissionaudit'),(1361,'Can add content metadata item transmission',340,'add_contentmetadataitemtransmission'),(1362,'Can change content metadata item transmission',340,'change_contentmetadataitemtransmission'),(1363,'Can delete content metadata item transmission',340,'delete_contentmetadataitemtransmission'),(1364,'Can view content metadata item transmission',340,'view_contentmetadataitemtransmission'),(1365,'Can add degreed enterprise customer configuration',341,'add_degreedenterprisecustomerconfiguration'),(1366,'Can change degreed enterprise customer configuration',341,'change_degreedenterprisecustomerconfiguration'),(1367,'Can delete degreed enterprise customer configuration',341,'delete_degreedenterprisecustomerconfiguration'),(1368,'Can view degreed enterprise customer configuration',341,'view_degreedenterprisecustomerconfiguration'),(1369,'Can add degreed global configuration',342,'add_degreedglobalconfiguration'),(1370,'Can change degreed global configuration',342,'change_degreedglobalconfiguration'),(1371,'Can delete degreed global configuration',342,'delete_degreedglobalconfiguration'),(1372,'Can view degreed global configuration',342,'view_degreedglobalconfiguration'),(1373,'Can add degreed learner data transmission audit',343,'add_degreedlearnerdatatransmissionaudit'),(1374,'Can change degreed learner data transmission audit',343,'change_degreedlearnerdatatransmissionaudit'),(1375,'Can delete degreed learner data transmission audit',343,'delete_degreedlearnerdatatransmissionaudit'),(1376,'Can view degreed learner data transmission audit',343,'view_degreedlearnerdatatransmissionaudit'),(1377,'Can add historical degreed enterprise customer configuration',344,'add_historicaldegreedenterprisecustomerconfiguration'),(1378,'Can change historical degreed enterprise customer configuration',344,'change_historicaldegreedenterprisecustomerconfiguration'),(1379,'Can delete historical degreed enterprise customer configuration',344,'delete_historicaldegreedenterprisecustomerconfiguration'),(1380,'Can view historical degreed enterprise customer configuration',344,'view_historicaldegreedenterprisecustomerconfiguration'),(1381,'Can add sap success factors learner data transmission audit',345,'add_sapsuccessfactorslearnerdatatransmissionaudit'),(1382,'Can change sap success factors learner data transmission audit',345,'change_sapsuccessfactorslearnerdatatransmissionaudit'),(1383,'Can delete sap success factors learner data transmission audit',345,'delete_sapsuccessfactorslearnerdatatransmissionaudit'),(1384,'Can view sap success factors learner data transmission audit',345,'view_sapsuccessfactorslearnerdatatransmissionaudit'),(1385,'Can add sap success factors global configuration',346,'add_sapsuccessfactorsglobalconfiguration'),(1386,'Can change sap success factors global configuration',346,'change_sapsuccessfactorsglobalconfiguration'),(1387,'Can delete sap success factors global configuration',346,'delete_sapsuccessfactorsglobalconfiguration'),(1388,'Can view sap success factors global configuration',346,'view_sapsuccessfactorsglobalconfiguration'),(1389,'Can add sap success factors enterprise customer configuration',347,'add_sapsuccessfactorsenterprisecustomerconfiguration'),(1390,'Can change sap success factors enterprise customer configuration',347,'change_sapsuccessfactorsenterprisecustomerconfiguration'),(1391,'Can delete sap success factors enterprise customer configuration',347,'delete_sapsuccessfactorsenterprisecustomerconfiguration'),(1392,'Can view sap success factors enterprise customer configuration',347,'view_sapsuccessfactorsenterprisecustomerconfiguration'),(1393,'Can add cornerstone enterprise customer configuration',348,'add_cornerstoneenterprisecustomerconfiguration'),(1394,'Can change cornerstone enterprise customer configuration',348,'change_cornerstoneenterprisecustomerconfiguration'),(1395,'Can delete cornerstone enterprise customer configuration',348,'delete_cornerstoneenterprisecustomerconfiguration'),(1396,'Can view cornerstone enterprise customer configuration',348,'view_cornerstoneenterprisecustomerconfiguration'),(1397,'Can add cornerstone global configuration',349,'add_cornerstoneglobalconfiguration'),(1398,'Can change cornerstone global configuration',349,'change_cornerstoneglobalconfiguration'),(1399,'Can delete cornerstone global configuration',349,'delete_cornerstoneglobalconfiguration'),(1400,'Can view cornerstone global configuration',349,'view_cornerstoneglobalconfiguration'),(1401,'Can add cornerstone learner data transmission audit',350,'add_cornerstonelearnerdatatransmissionaudit'),(1402,'Can change cornerstone learner data transmission audit',350,'change_cornerstonelearnerdatatransmissionaudit'),(1403,'Can delete cornerstone learner data transmission audit',350,'delete_cornerstonelearnerdatatransmissionaudit'),(1404,'Can view cornerstone learner data transmission audit',350,'view_cornerstonelearnerdatatransmissionaudit'),(1405,'Can add historical cornerstone enterprise customer configuration',351,'add_historicalcornerstoneenterprisecustomerconfiguration'),(1406,'Can change historical cornerstone enterprise customer configuration',351,'change_historicalcornerstoneenterprisecustomerconfiguration'),(1407,'Can delete historical cornerstone enterprise customer configuration',351,'delete_historicalcornerstoneenterprisecustomerconfiguration'),(1408,'Can view historical cornerstone enterprise customer configuration',351,'view_historicalcornerstoneenterprisecustomerconfiguration'),(1409,'Can add xapilrs configuration',352,'add_xapilrsconfiguration'),(1410,'Can change xapilrs configuration',352,'change_xapilrsconfiguration'),(1411,'Can delete xapilrs configuration',352,'delete_xapilrsconfiguration'),(1412,'Can view xapilrs configuration',352,'view_xapilrsconfiguration'),(1413,'Can add xapi learner data transmission audit',353,'add_xapilearnerdatatransmissionaudit'),(1414,'Can change xapi learner data transmission audit',353,'change_xapilearnerdatatransmissionaudit'),(1415,'Can delete xapi learner data transmission audit',353,'delete_xapilearnerdatatransmissionaudit'),(1416,'Can view xapi learner data transmission audit',353,'view_xapilearnerdatatransmissionaudit'),(1417,'Can add historical blackboard enterprise customer configuration',354,'add_historicalblackboardenterprisecustomerconfiguration'),(1418,'Can change historical blackboard enterprise customer configuration',354,'change_historicalblackboardenterprisecustomerconfiguration'),(1419,'Can delete historical blackboard enterprise customer configuration',354,'delete_historicalblackboardenterprisecustomerconfiguration'),(1420,'Can view historical blackboard enterprise customer configuration',354,'view_historicalblackboardenterprisecustomerconfiguration'),(1421,'Can add blackboard enterprise customer configuration',355,'add_blackboardenterprisecustomerconfiguration'),(1422,'Can change blackboard enterprise customer configuration',355,'change_blackboardenterprisecustomerconfiguration'),(1423,'Can delete blackboard enterprise customer configuration',355,'delete_blackboardenterprisecustomerconfiguration'),(1424,'Can view blackboard enterprise customer configuration',355,'view_blackboardenterprisecustomerconfiguration'),(1425,'Can add historical canvas enterprise customer configuration',356,'add_historicalcanvasenterprisecustomerconfiguration'),(1426,'Can change historical canvas enterprise customer configuration',356,'change_historicalcanvasenterprisecustomerconfiguration'),(1427,'Can delete historical canvas enterprise customer configuration',356,'delete_historicalcanvasenterprisecustomerconfiguration'),(1428,'Can view historical canvas enterprise customer configuration',356,'view_historicalcanvasenterprisecustomerconfiguration'),(1429,'Can add canvas enterprise customer configuration',357,'add_canvasenterprisecustomerconfiguration'),(1430,'Can change canvas enterprise customer configuration',357,'change_canvasenterprisecustomerconfiguration'),(1431,'Can delete canvas enterprise customer configuration',357,'delete_canvasenterprisecustomerconfiguration'),(1432,'Can view canvas enterprise customer configuration',357,'view_canvasenterprisecustomerconfiguration'),(1433,'Can add canvas learner data transmission audit',358,'add_canvaslearnerdatatransmissionaudit'),(1434,'Can change canvas learner data transmission audit',358,'change_canvaslearnerdatatransmissionaudit'),(1435,'Can delete canvas learner data transmission audit',358,'delete_canvaslearnerdatatransmissionaudit'),(1436,'Can view canvas learner data transmission audit',358,'view_canvaslearnerdatatransmissionaudit'),(1437,'Can add moodle enterprise customer configuration',359,'add_moodleenterprisecustomerconfiguration'),(1438,'Can change moodle enterprise customer configuration',359,'change_moodleenterprisecustomerconfiguration'),(1439,'Can delete moodle enterprise customer configuration',359,'delete_moodleenterprisecustomerconfiguration'),(1440,'Can view moodle enterprise customer configuration',359,'view_moodleenterprisecustomerconfiguration'),(1441,'Can add historical moodle enterprise customer configuration',360,'add_historicalmoodleenterprisecustomerconfiguration'),(1442,'Can change historical moodle enterprise customer configuration',360,'change_historicalmoodleenterprisecustomerconfiguration'),(1443,'Can delete historical moodle enterprise customer configuration',360,'delete_historicalmoodleenterprisecustomerconfiguration'),(1444,'Can view historical moodle enterprise customer configuration',360,'view_historicalmoodleenterprisecustomerconfiguration'),(1445,'Can add moodle learner data transmission audit',361,'add_moodlelearnerdatatransmissionaudit'),(1446,'Can change moodle learner data transmission audit',361,'change_moodlelearnerdatatransmissionaudit'),(1447,'Can delete moodle learner data transmission audit',361,'delete_moodlelearnerdatatransmissionaudit'),(1448,'Can view moodle learner data transmission audit',361,'view_moodlelearnerdatatransmissionaudit'),(1449,'Can add announcement',362,'add_announcement'),(1450,'Can change announcement',362,'change_announcement'),(1451,'Can delete announcement',362,'delete_announcement'),(1452,'Can view announcement',362,'view_announcement'),(1453,'Can add bookmark',363,'add_bookmark'),(1454,'Can change bookmark',363,'change_bookmark'),(1455,'Can delete bookmark',363,'delete_bookmark'),(1456,'Can view bookmark',363,'view_bookmark'),(1457,'Can add x block cache',364,'add_xblockcache'),(1458,'Can change x block cache',364,'change_xblockcache'),(1459,'Can delete x block cache',364,'delete_xblockcache'),(1460,'Can view x block cache',364,'view_xblockcache'),(1461,'Can add content library',365,'add_contentlibrary'),(1462,'Can change content library',365,'change_contentlibrary'),(1463,'Can delete content library',365,'delete_contentlibrary'),(1464,'Can view content library',365,'view_contentlibrary'),(1465,'Can add content library permission',366,'add_contentlibrarypermission'),(1466,'Can change content library permission',366,'change_contentlibrarypermission'),(1467,'Can delete content library permission',366,'delete_contentlibrarypermission'),(1468,'Can view content library permission',366,'view_contentlibrarypermission'),(1469,'Can add credentials api config',367,'add_credentialsapiconfig'),(1470,'Can change credentials api config',367,'change_credentialsapiconfig'),(1471,'Can delete credentials api config',367,'delete_credentialsapiconfig'),(1472,'Can view credentials api config',367,'view_credentialsapiconfig'),(1473,'Can add notify_credentials argument',368,'add_notifycredentialsconfig'),(1474,'Can change notify_credentials argument',368,'change_notifycredentialsconfig'),(1475,'Can delete notify_credentials argument',368,'delete_notifycredentialsconfig'),(1476,'Can view notify_credentials argument',368,'view_notifycredentialsconfig'),(1477,'Can add persistent subsection grade',369,'add_persistentsubsectiongrade'),(1478,'Can change persistent subsection grade',369,'change_persistentsubsectiongrade'),(1479,'Can delete persistent subsection grade',369,'delete_persistentsubsectiongrade'),(1480,'Can view persistent subsection grade',369,'view_persistentsubsectiongrade'),(1481,'Can add visible blocks',370,'add_visibleblocks'),(1482,'Can change visible blocks',370,'change_visibleblocks'),(1483,'Can delete visible blocks',370,'delete_visibleblocks'),(1484,'Can view visible blocks',370,'view_visibleblocks'),(1485,'Can add course persistent grades flag',371,'add_coursepersistentgradesflag'),(1486,'Can change course persistent grades flag',371,'change_coursepersistentgradesflag'),(1487,'Can delete course persistent grades flag',371,'delete_coursepersistentgradesflag'),(1488,'Can view course persistent grades flag',371,'view_coursepersistentgradesflag'),(1489,'Can add persistent grades enabled flag',372,'add_persistentgradesenabledflag'),(1490,'Can change persistent grades enabled flag',372,'change_persistentgradesenabledflag'),(1491,'Can delete persistent grades enabled flag',372,'delete_persistentgradesenabledflag'),(1492,'Can view persistent grades enabled flag',372,'view_persistentgradesenabledflag'),(1493,'Can add persistent course grade',373,'add_persistentcoursegrade'),(1494,'Can change persistent course grade',373,'change_persistentcoursegrade'),(1495,'Can delete persistent course grade',373,'delete_persistentcoursegrade'),(1496,'Can view persistent course grade',373,'view_persistentcoursegrade'),(1497,'Can add compute grades setting',374,'add_computegradessetting'),(1498,'Can change compute grades setting',374,'change_computegradessetting'),(1499,'Can delete compute grades setting',374,'delete_computegradessetting'),(1500,'Can view compute grades setting',374,'view_computegradessetting'),(1501,'Can add persistent subsection grade override',375,'add_persistentsubsectiongradeoverride'),(1502,'Can change persistent subsection grade override',375,'change_persistentsubsectiongradeoverride'),(1503,'Can delete persistent subsection grade override',375,'delete_persistentsubsectiongradeoverride'),(1504,'Can view persistent subsection grade override',375,'view_persistentsubsectiongradeoverride'),(1505,'Can add historical persistent subsection grade override',376,'add_historicalpersistentsubsectiongradeoverride'),(1506,'Can change historical persistent subsection grade override',376,'change_historicalpersistentsubsectiongradeoverride'),(1507,'Can delete historical persistent subsection grade override',376,'delete_historicalpersistentsubsectiongradeoverride'),(1508,'Can view historical persistent subsection grade override',376,'view_historicalpersistentsubsectiongradeoverride'),(1509,'Can add historical program enrollment',377,'add_historicalprogramenrollment'),(1510,'Can change historical program enrollment',377,'change_historicalprogramenrollment'),(1511,'Can delete historical program enrollment',377,'delete_historicalprogramenrollment'),(1512,'Can view historical program enrollment',377,'view_historicalprogramenrollment'),(1513,'Can add program enrollment',378,'add_programenrollment'),(1514,'Can change program enrollment',378,'change_programenrollment'),(1515,'Can delete program enrollment',378,'delete_programenrollment'),(1516,'Can view program enrollment',378,'view_programenrollment'),(1517,'Can add historical program course enrollment',379,'add_historicalprogramcourseenrollment'),(1518,'Can change historical program course enrollment',379,'change_historicalprogramcourseenrollment'),(1519,'Can delete historical program course enrollment',379,'delete_historicalprogramcourseenrollment'),(1520,'Can view historical program course enrollment',379,'view_historicalprogramcourseenrollment'),(1521,'Can add program course enrollment',380,'add_programcourseenrollment'),(1522,'Can change program course enrollment',380,'change_programcourseenrollment'),(1523,'Can delete program course enrollment',380,'delete_programcourseenrollment'),(1524,'Can view program course enrollment',380,'view_programcourseenrollment'),(1525,'Can add course access role assignment',381,'add_courseaccessroleassignment'),(1526,'Can change course access role assignment',381,'change_courseaccessroleassignment'),(1527,'Can delete course access role assignment',381,'delete_courseaccessroleassignment'),(1528,'Can view course access role assignment',381,'view_courseaccessroleassignment'),(1529,'Can add site theme',382,'add_sitetheme'),(1530,'Can change site theme',382,'change_sitetheme'),(1531,'Can delete site theme',382,'delete_sitetheme'),(1532,'Can view site theme',382,'view_sitetheme'),(1533,'Can add csv operation',383,'add_csvoperation'),(1534,'Can change csv operation',383,'change_csvoperation'),(1535,'Can delete csv operation',383,'delete_csvoperation'),(1536,'Can view csv operation',383,'view_csvoperation'),(1537,'Can add lti configuration',384,'add_lticonfiguration'),(1538,'Can change lti configuration',384,'change_lticonfiguration'),(1539,'Can delete lti configuration',384,'delete_lticonfiguration'),(1540,'Can view lti configuration',384,'view_lticonfiguration'),(1541,'Can add content date',385,'add_contentdate'),(1542,'Can change content date',385,'change_contentdate'),(1543,'Can delete content date',385,'delete_contentdate'),(1544,'Can view content date',385,'view_contentdate'),(1545,'Can add date policy',386,'add_datepolicy'),(1546,'Can change date policy',386,'change_datepolicy'),(1547,'Can delete date policy',386,'delete_datepolicy'),(1548,'Can view date policy',386,'view_datepolicy'),(1549,'Can add user date',387,'add_userdate'),(1550,'Can change user date',387,'change_userdate'),(1551,'Can delete user date',387,'delete_userdate'),(1552,'Can view user date',387,'view_userdate'),(1553,'Can add proctored exam',388,'add_proctoredexam'),(1554,'Can change proctored exam',388,'change_proctoredexam'),(1555,'Can delete proctored exam',388,'delete_proctoredexam'),(1556,'Can view proctored exam',388,'view_proctoredexam'),(1557,'Can add Proctored exam review policy',389,'add_proctoredexamreviewpolicy'),(1558,'Can change Proctored exam review policy',389,'change_proctoredexamreviewpolicy'),(1559,'Can delete Proctored exam review policy',389,'delete_proctoredexamreviewpolicy'),(1560,'Can view Proctored exam review policy',389,'view_proctoredexamreviewpolicy'),(1561,'Can add proctored exam review policy history',390,'add_proctoredexamreviewpolicyhistory'),(1562,'Can change proctored exam review policy history',390,'change_proctoredexamreviewpolicyhistory'),(1563,'Can delete proctored exam review policy history',390,'delete_proctoredexamreviewpolicyhistory'),(1564,'Can view proctored exam review policy history',390,'view_proctoredexamreviewpolicyhistory'),(1565,'Can add proctored exam software secure comment',391,'add_proctoredexamsoftwaresecurecomment'),(1566,'Can change proctored exam software secure comment',391,'change_proctoredexamsoftwaresecurecomment'),(1567,'Can delete proctored exam software secure comment',391,'delete_proctoredexamsoftwaresecurecomment'),(1568,'Can view proctored exam software secure comment',391,'view_proctoredexamsoftwaresecurecomment'),(1569,'Can add Proctored exam software secure review',392,'add_proctoredexamsoftwaresecurereview'),(1570,'Can change Proctored exam software secure review',392,'change_proctoredexamsoftwaresecurereview'),(1571,'Can delete Proctored exam software secure review',392,'delete_proctoredexamsoftwaresecurereview'),(1572,'Can view Proctored exam software secure review',392,'view_proctoredexamsoftwaresecurereview'),(1573,'Can add Proctored exam review archive',393,'add_proctoredexamsoftwaresecurereviewhistory'),(1574,'Can change Proctored exam review archive',393,'change_proctoredexamsoftwaresecurereviewhistory'),(1575,'Can delete Proctored exam review archive',393,'delete_proctoredexamsoftwaresecurereviewhistory'),(1576,'Can view Proctored exam review archive',393,'view_proctoredexamsoftwaresecurereviewhistory'),(1577,'Can add proctored allowance',394,'add_proctoredexamstudentallowance'),(1578,'Can change proctored allowance',394,'change_proctoredexamstudentallowance'),(1579,'Can delete proctored allowance',394,'delete_proctoredexamstudentallowance'),(1580,'Can view proctored allowance',394,'view_proctoredexamstudentallowance'),(1581,'Can add proctored allowance history',395,'add_proctoredexamstudentallowancehistory'),(1582,'Can change proctored allowance history',395,'change_proctoredexamstudentallowancehistory'),(1583,'Can delete proctored allowance history',395,'delete_proctoredexamstudentallowancehistory'),(1584,'Can view proctored allowance history',395,'view_proctoredexamstudentallowancehistory'),(1585,'Can add proctored exam attempt',396,'add_proctoredexamstudentattempt'),(1586,'Can change proctored exam attempt',396,'change_proctoredexamstudentattempt'),(1587,'Can delete proctored exam attempt',396,'delete_proctoredexamstudentattempt'),(1588,'Can view proctored exam attempt',396,'view_proctoredexamstudentattempt'),(1589,'Can add proctored exam attempt history',397,'add_proctoredexamstudentattempthistory'),(1590,'Can change proctored exam attempt history',397,'change_proctoredexamstudentattempthistory'),(1591,'Can delete proctored exam attempt history',397,'delete_proctoredexamstudentattempthistory'),(1592,'Can view proctored exam attempt history',397,'view_proctoredexamstudentattempthistory'),(1593,'Can add block completion',398,'add_blockcompletion'),(1594,'Can change block completion',398,'change_blockcompletion'),(1595,'Can delete block completion',398,'delete_blockcompletion'),(1596,'Can view block completion',398,'view_blockcompletion'),(1597,'Can add score overrider',399,'add_scoreoverrider'),(1598,'Can change score overrider',399,'change_scoreoverrider'),(1599,'Can delete score overrider',399,'delete_scoreoverrider'),(1600,'Can view score overrider',399,'view_scoreoverrider'),(1601,'Can add video upload config',400,'add_videouploadconfig'),(1602,'Can change video upload config',400,'change_videouploadconfig'),(1603,'Can delete video upload config',400,'delete_videouploadconfig'),(1604,'Can view video upload config',400,'view_videouploadconfig'),(1605,'Can add course creator',401,'add_coursecreator'),(1606,'Can change course creator',401,'change_coursecreator'),(1607,'Can delete course creator',401,'delete_coursecreator'),(1608,'Can view course creator',401,'view_coursecreator'),(1609,'Can add studio config',402,'add_studioconfig'),(1610,'Can change studio config',402,'change_studioconfig'),(1611,'Can delete studio config',402,'delete_studioconfig'),(1612,'Can view studio config',402,'view_studioconfig'),(1613,'Can add course edit lti fields enabled flag',403,'add_courseeditltifieldsenabledflag'),(1614,'Can change course edit lti fields enabled flag',403,'change_courseeditltifieldsenabledflag'),(1615,'Can delete course edit lti fields enabled flag',403,'delete_courseeditltifieldsenabledflag'),(1616,'Can view course edit lti fields enabled flag',403,'view_courseeditltifieldsenabledflag'),(1617,'Can add available tag value',404,'add_tagavailablevalues'),(1618,'Can change available tag value',404,'change_tagavailablevalues'),(1619,'Can delete available tag value',404,'delete_tagavailablevalues'),(1620,'Can view available tag value',404,'view_tagavailablevalues'),(1621,'Can add tag category',405,'add_tagcategories'),(1622,'Can change tag category',405,'change_tagcategories'),(1623,'Can delete tag category',405,'delete_tagcategories'),(1624,'Can view tag category',405,'view_tagcategories'),(1625,'Can add user task artifact',406,'add_usertaskartifact'),(1626,'Can change user task artifact',406,'change_usertaskartifact'),(1627,'Can delete user task artifact',406,'delete_usertaskartifact'),(1628,'Can view user task artifact',406,'view_usertaskartifact'),(1629,'Can add user task status',407,'add_usertaskstatus'),(1630,'Can change user task status',407,'change_usertaskstatus'),(1631,'Can delete user task status',407,'delete_usertaskstatus'),(1632,'Can view user task status',407,'view_usertaskstatus');
/*!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(150) NOT NULL,
`email` varchar(254) NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 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,'!hz7QXINqUBvk3iSsjjzHvDq05sTblh0yian1q6sh',NULL,0,'ecommerce_worker','','','ecommerce_worker@example.com',0,1,'2020-10-06 04:00:18.678197'),(2,'!wff25tBgBHxnLWcR6LvCnI7sJZjrxc9yAfNIGziX',NULL,0,'login_service_user','','','login_service_user@fake.email',0,1,'2020-10-06 04:01:51.405988');
/*!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,
`phone_number` varchar(50) DEFAULT NULL,
`state` varchar(2) DEFAULT 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 `blackboard_blackboardenterprisecustomerconfiguration`
--
DROP TABLE IF EXISTS `blackboard_blackboardenterprisecustomerconfiguration`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blackboard_blackboardenterprisecustomerconfiguration` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`created` datetime(6) NOT NULL,
`modified` datetime(6) NOT NULL,
`active` tinyint(1) NOT NULL,
`transmission_chunk_size` int(11) NOT NULL,
`channel_worker_username` varchar(255) DEFAULT NULL,
`catalogs_to_transmit` longtext,
`client_id` varchar(255) DEFAULT NULL,
`client_secret` varchar(255) DEFAULT NULL,
`blackboard_base_url` varchar(255) DEFAULT NULL,
`refresh_token` varchar(255) NOT NULL,
`enterprise_customer_id` char(32) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`),
CONSTRAINT `blackboard_blackboar_enterprise_customer__39f883b0_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 `blackboard_blackboardenterprisecustomerconfiguration`
--
LOCK TABLES `blackboard_blackboardenterprisecustomerconfiguration` WRITE;
/*!40000 ALTER TABLE `blackboard_blackboardenterprisecustomerconfiguration` DISABLE KEYS */;
/*!40000 ALTER TABLE `blackboard_blackboardenterprisecustomerconfiguration` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blackboard_historicalblackboardenterprisecustomerconfiguration`
--
DROP TABLE IF EXISTS `blackboard_historicalblackboardenterprisecustomerconfiguration`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blackboard_historicalblackboardenterprisecustomerconfiguration` (
`id` int(11) NOT NULL,
`created` datetime(6) NOT NULL,
`modified` datetime(6) NOT NULL,
`active` tinyint(1) NOT NULL,
`transmission_chunk_size` int(11) NOT NULL,
`channel_worker_username` varchar(255) DEFAULT NULL,
`catalogs_to_transmit` longtext,
`client_id` varchar(255) DEFAULT NULL,
`client_secret` varchar(255) DEFAULT NULL,
`blackboard_base_url` varchar(255) DEFAULT NULL,
`refresh_token` 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,
PRIMARY KEY (`history_id`),
KEY `blackboard_historica_history_user_id_099f295b_fk_auth_user` (`history_user_id`),
KEY `blackboard_historicalblackb_id_7675c06f` (`id`),
KEY `blackboard_historicalblackb_enterprise_customer_id_b9053e9a` (`enterprise_customer_id`),
CONSTRAINT `blackboard_historica_history_user_id_099f295b_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 `blackboard_historicalblackboardenterprisecustomerconfiguration`
--
LOCK TABLES `blackboard_historicalblackboardenterprisecustomerconfiguration` WRITE;
/*!40000 ALTER TABLE `blackboard_historicalblackboardenterprisecustomerconfiguration` DISABLE KEYS */;
/*!40000 ALTER TABLE `blackboard_historicalblackboardenterprisecustomerconfiguration` 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,'
Update from {course_title}