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