forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edxapp.sql
12790 lines (11131 loc) · 802 KB
/
edxapp.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.6.47, for Linux (x86_64)
--
-- Host: localhost Database: edxapp
-- ------------------------------------------------------
-- Server version 5.6.47
/*!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 */;
--
-- Current Database: `edxapp`
--
/*!40000 DROP DATABASE IF EXISTS `edxapp`*/;
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `edxapp` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `edxapp`;
--
-- Table structure for table `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=utf8;
/*!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`
--
/*!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=utf8;
/*!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`
--
/*!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=utf8;
/*!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`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_assessment`
--
LOCK TABLES `assessment_assessment` WRITE;
/*!40000 ALTER TABLE `assessment_assessment` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_assessment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_assessmentfeedback`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_assessmentfeedback` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`submission_uuid` varchar(128) NOT NULL,
`feedback_text` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `submission_uuid` (`submission_uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_assessmentfeedback`
--
LOCK TABLES `assessment_assessmentfeedback` WRITE;
/*!40000 ALTER TABLE `assessment_assessmentfeedback` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_assessmentfeedback` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_assessmentfeedback_assessments`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_assessmentfeedback_assessments`
--
LOCK TABLES `assessment_assessmentfeedback_assessments` WRITE;
/*!40000 ALTER TABLE `assessment_assessmentfeedback_assessments` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_assessmentfeedback_assessments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_assessmentfeedback_options`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_assessmentfeedback_options`
--
LOCK TABLES `assessment_assessmentfeedback_options` WRITE;
/*!40000 ALTER TABLE `assessment_assessmentfeedback_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_assessmentfeedback_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_assessmentfeedbackoption`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assessment_assessmentfeedbackoption` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`text` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `text` (`text`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_assessmentfeedbackoption`
--
LOCK TABLES `assessment_assessmentfeedbackoption` WRITE;
/*!40000 ALTER TABLE `assessment_assessmentfeedbackoption` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_assessmentfeedbackoption` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_assessmentpart`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_assessmentpart`
--
LOCK TABLES `assessment_assessmentpart` WRITE;
/*!40000 ALTER TABLE `assessment_assessmentpart` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_assessmentpart` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_criterion`
--
/*!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 AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_criterion`
--
LOCK TABLES `assessment_criterion` WRITE;
/*!40000 ALTER TABLE `assessment_criterion` DISABLE KEYS */;
INSERT INTO `assessment_criterion` VALUES (1,'Content','Content',0,'Did the response describe a meal and did it describe why someone should chose to eat it?',1),(2,'Organization & Clarity','Organization & Clarity',1,'How well did the response use language?',1),(3,'Persuasiveness','Persuasiveness',2,'How well did the response convince you to try the meal that it describes?',1);
/*!40000 ALTER TABLE `assessment_criterion` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `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 AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_criterionoption`
--
LOCK TABLES `assessment_criterionoption` WRITE;
/*!40000 ALTER TABLE `assessment_criterionoption` DISABLE KEYS */;
INSERT INTO `assessment_criterionoption` VALUES (1,0,0,'Off Topic','Off Topic','The essay is off-topic or does not answer all or part of the question.',1),(2,1,5,'No Explanation','No Explanation','A meal is described, but no argument is made to persuade the reader to try it.',1),(3,2,5,'Unclear recommendation','Unclear recommendation','A meal is not described, but an argument is made to persuade the reader to try it.',1),(4,3,10,'Persuasive recommendation','Persuasive recommendation','The essay give a good description of the meal and provides supporting reasons for trying the meal.',1),(5,0,0,'Confusing','Confusing','It is difficult to identify the argument and main idea.',2),(6,1,1,'Basic Structure','Basic Structure','The essay provides a main idea. Additional details are provided, and some support the main idea.',2),(7,2,2,'Clear Structure','Clear Structure','The essay provides a clear main idea supported by specific details.',2),(8,3,3,'Complete Structure','Complete Structure','The essay has a complete structure: an introduction, statement of main idea, supporting details and summary.',2),(9,0,0,'Unconvincing','Unconvincing','The author did not present a persuasive argument, and I have no interest in trying this meal.',3),(10,1,2,'Interesting','Interesting','The author’s argument was somewhat persuarsive. I need more information to consider trying this meal.',3),(11,2,4,'Persuasive','Persuasive','The author’s argument was persuasive, and I will consider trying the meal.',3),(12,3,6,'Inspiring','Inspiring','The author presented an exceptionally strong case and has convinced me to try the meal.',3);
/*!40000 ALTER TABLE `assessment_criterionoption` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `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=utf8;
/*!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`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_peerworkflow`
--
LOCK TABLES `assessment_peerworkflow` WRITE;
/*!40000 ALTER TABLE `assessment_peerworkflow` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_peerworkflow` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_peerworkflowitem`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_peerworkflowitem`
--
LOCK TABLES `assessment_peerworkflowitem` WRITE;
/*!40000 ALTER TABLE `assessment_peerworkflowitem` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_peerworkflowitem` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_rubric`
--
/*!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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_rubric`
--
LOCK TABLES `assessment_rubric` WRITE;
/*!40000 ALTER TABLE `assessment_rubric` DISABLE KEYS */;
INSERT INTO `assessment_rubric` VALUES (1,'b2783932b715f500b0af5f2e0d80757e54301353','ab95e8c199881793b6999c5efb1a5754fd7417d5');
/*!40000 ALTER TABLE `assessment_rubric` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_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=utf8;
/*!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`
--
/*!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=utf8;
/*!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`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_studenttrainingworkflow`
--
LOCK TABLES `assessment_studenttrainingworkflow` WRITE;
/*!40000 ALTER TABLE `assessment_studenttrainingworkflow` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_studenttrainingworkflow` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_studenttrainingworkflowitem`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_studenttrainingworkflowitem`
--
LOCK TABLES `assessment_studenttrainingworkflowitem` WRITE;
/*!40000 ALTER TABLE `assessment_studenttrainingworkflowitem` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_studenttrainingworkflowitem` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_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=utf8;
/*!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`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_trainingexample`
--
LOCK TABLES `assessment_trainingexample` WRITE;
/*!40000 ALTER TABLE `assessment_trainingexample` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_trainingexample` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assessment_trainingexample_options_selected`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assessment_trainingexample_options_selected`
--
LOCK TABLES `assessment_trainingexample_options_selected` WRITE;
/*!40000 ALTER TABLE `assessment_trainingexample_options_selected` DISABLE KEYS */;
/*!40000 ALTER TABLE `assessment_trainingexample_options_selected` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_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=utf8;
/*!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`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group`
--
LOCK TABLES `auth_group` WRITE;
/*!40000 ALTER TABLE `auth_group` DISABLE KEYS */;
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`
--
/*!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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group_permissions`
--
LOCK TABLES `auth_group_permissions` WRITE;
/*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_permission`
--
/*!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=1202 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_permission`
--
LOCK TABLES `auth_permission` WRITE;
/*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */;
INSERT INTO `auth_permission` VALUES (1,'Can add group',2,'add_group'),(2,'Can change group',2,'change_group'),(3,'Can delete group',2,'delete_group'),(4,'Can add user',3,'add_user'),(5,'Can change user',3,'change_user'),(6,'Can delete user',3,'delete_user'),(7,'Can add permission',4,'add_permission'),(8,'Can change permission',4,'change_permission'),(9,'Can delete permission',4,'delete_permission'),(10,'Can add content type',5,'add_contenttype'),(11,'Can change content type',5,'change_contenttype'),(12,'Can delete content type',5,'delete_contenttype'),(13,'Can add redirect',6,'add_redirect'),(14,'Can change redirect',6,'change_redirect'),(15,'Can delete redirect',6,'delete_redirect'),(16,'Can add session',7,'add_session'),(17,'Can change session',7,'change_session'),(18,'Can delete session',7,'delete_session'),(19,'Can add site',8,'add_site'),(20,'Can change site',8,'change_site'),(21,'Can delete site',8,'delete_site'),(22,'Can add saved group result',9,'add_tasksetmeta'),(23,'Can change saved group result',9,'change_tasksetmeta'),(24,'Can delete saved group result',9,'delete_tasksetmeta'),(25,'Can add crontab',10,'add_crontabschedule'),(26,'Can change crontab',10,'change_crontabschedule'),(27,'Can delete crontab',10,'delete_crontabschedule'),(28,'Can add periodic task',11,'add_periodictask'),(29,'Can change periodic task',11,'change_periodictask'),(30,'Can delete periodic task',11,'delete_periodictask'),(31,'Can add task',12,'add_taskstate'),(32,'Can change task',12,'change_taskstate'),(33,'Can delete task',12,'delete_taskstate'),(34,'Can add periodic tasks',13,'add_periodictasks'),(35,'Can change periodic tasks',13,'change_periodictasks'),(36,'Can delete periodic tasks',13,'delete_periodictasks'),(37,'Can add worker',14,'add_workerstate'),(38,'Can change worker',14,'change_workerstate'),(39,'Can delete worker',14,'delete_workerstate'),(40,'Can add interval',15,'add_intervalschedule'),(41,'Can change interval',15,'change_intervalschedule'),(42,'Can delete interval',15,'delete_intervalschedule'),(43,'Can add task state',16,'add_taskmeta'),(44,'Can change task state',16,'change_taskmeta'),(45,'Can delete task state',16,'delete_taskmeta'),(46,'Can add Switch',17,'add_switch'),(47,'Can change Switch',17,'change_switch'),(48,'Can delete Switch',17,'delete_switch'),(49,'Can add Flag',18,'add_flag'),(50,'Can change Flag',18,'change_flag'),(51,'Can delete Flag',18,'delete_flag'),(52,'Can add Sample',19,'add_sample'),(53,'Can change Sample',19,'change_sample'),(54,'Can delete Sample',19,'delete_sample'),(55,'Can add course message',20,'add_coursemessage'),(56,'Can change course message',20,'change_coursemessage'),(57,'Can delete course message',20,'delete_coursemessage'),(58,'Can add global status message',21,'add_globalstatusmessage'),(59,'Can change global status message',21,'change_globalstatusmessage'),(60,'Can delete global status message',21,'delete_globalstatusmessage'),(61,'Can add asset base url config',22,'add_assetbaseurlconfig'),(62,'Can change asset base url config',22,'change_assetbaseurlconfig'),(63,'Can delete asset base url config',22,'delete_assetbaseurlconfig'),(64,'Can add asset excluded extensions config',23,'add_assetexcludedextensionsconfig'),(65,'Can change asset excluded extensions config',23,'change_assetexcludedextensionsconfig'),(66,'Can delete asset excluded extensions config',23,'delete_assetexcludedextensionsconfig'),(67,'Can add course asset cache ttl config',24,'add_courseassetcachettlconfig'),(68,'Can change course asset cache ttl config',24,'change_courseassetcachettlconfig'),(69,'Can delete course asset cache ttl config',24,'delete_courseassetcachettlconfig'),(70,'Can add cdn user agents config',25,'add_cdnuseragentsconfig'),(71,'Can change cdn user agents config',25,'change_cdnuseragentsconfig'),(72,'Can delete cdn user agents config',25,'delete_cdnuseragentsconfig'),(73,'Can add site configuration',26,'add_siteconfiguration'),(74,'Can change site configuration',26,'change_siteconfiguration'),(75,'Can delete site configuration',26,'delete_siteconfiguration'),(76,'Can add site configuration history',27,'add_siteconfigurationhistory'),(77,'Can change site configuration history',27,'change_siteconfigurationhistory'),(78,'Can delete site configuration history',27,'delete_siteconfigurationhistory'),(79,'Can add video transcript enabled flag',28,'add_videotranscriptenabledflag'),(80,'Can change video transcript enabled flag',28,'change_videotranscriptenabledflag'),(81,'Can delete video transcript enabled flag',28,'delete_videotranscriptenabledflag'),(82,'Can add course hls playback enabled flag',29,'add_coursehlsplaybackenabledflag'),(83,'Can change course hls playback enabled flag',29,'change_coursehlsplaybackenabledflag'),(84,'Can delete course hls playback enabled flag',29,'delete_coursehlsplaybackenabledflag'),(85,'Can add video thumbnail setting',30,'add_videothumbnailsetting'),(86,'Can change video thumbnail setting',30,'change_videothumbnailsetting'),(87,'Can delete video thumbnail setting',30,'delete_videothumbnailsetting'),(88,'Can add hls playback enabled flag',31,'add_hlsplaybackenabledflag'),(89,'Can change hls playback enabled flag',31,'change_hlsplaybackenabledflag'),(90,'Can delete hls playback enabled flag',31,'delete_hlsplaybackenabledflag'),(91,'Can add course video transcript enabled flag',32,'add_coursevideotranscriptenabledflag'),(92,'Can change course video transcript enabled flag',32,'change_coursevideotranscriptenabledflag'),(93,'Can delete course video transcript enabled flag',32,'delete_coursevideotranscriptenabledflag'),(94,'Can add migration enqueued course',33,'add_migrationenqueuedcourse'),(95,'Can change migration enqueued course',33,'change_migrationenqueuedcourse'),(96,'Can delete migration enqueued course',33,'delete_migrationenqueuedcourse'),(97,'Can add updated course videos',34,'add_updatedcoursevideos'),(98,'Can change updated course videos',34,'change_updatedcoursevideos'),(99,'Can delete updated course videos',34,'delete_updatedcoursevideos'),(100,'Can add course youtube blocked flag',35,'add_courseyoutubeblockedflag'),(101,'Can change course youtube blocked flag',35,'change_courseyoutubeblockedflag'),(102,'Can delete course youtube blocked flag',35,'delete_courseyoutubeblockedflag'),(103,'Can add transcript migration setting',36,'add_transcriptmigrationsetting'),(104,'Can change transcript migration setting',36,'change_transcriptmigrationsetting'),(105,'Can delete transcript migration setting',36,'delete_transcriptmigrationsetting'),(106,'Can add video pipeline integration',37,'add_videopipelineintegration'),(107,'Can change video pipeline integration',37,'change_videopipelineintegration'),(108,'Can delete video pipeline integration',37,'delete_videopipelineintegration'),(109,'Can add course video uploads enabled by default',38,'add_coursevideouploadsenabledbydefault'),(110,'Can change course video uploads enabled by default',38,'change_coursevideouploadsenabledbydefault'),(111,'Can delete course video uploads enabled by default',38,'delete_coursevideouploadsenabledbydefault'),(112,'Can add video uploads enabled by default',39,'add_videouploadsenabledbydefault'),(113,'Can change video uploads enabled by default',39,'change_videouploadsenabledbydefault'),(114,'Can delete video uploads enabled by default',39,'delete_videouploadsenabledbydefault'),(115,'Can add course dynamic upgrade deadline configuration',40,'add_coursedynamicupgradedeadlineconfiguration'),(116,'Can change course dynamic upgrade deadline configuration',40,'change_coursedynamicupgradedeadlineconfiguration'),(117,'Can delete course dynamic upgrade deadline configuration',40,'delete_coursedynamicupgradedeadlineconfiguration'),(118,'Can add offline computed grade',41,'add_offlinecomputedgrade'),(119,'Can change offline computed grade',41,'change_offlinecomputedgrade'),(120,'Can delete offline computed grade',41,'delete_offlinecomputedgrade'),(121,'Can add x module user state summary field',42,'add_xmoduleuserstatesummaryfield'),(122,'Can change x module user state summary field',42,'change_xmoduleuserstatesummaryfield'),(123,'Can delete x module user state summary field',42,'delete_xmoduleuserstatesummaryfield'),(124,'Can add student field override',43,'add_studentfieldoverride'),(125,'Can change student field override',43,'change_studentfieldoverride'),(126,'Can delete student field override',43,'delete_studentfieldoverride'),(127,'Can add org dynamic upgrade deadline configuration',44,'add_orgdynamicupgradedeadlineconfiguration'),(128,'Can change org dynamic upgrade deadline configuration',44,'change_orgdynamicupgradedeadlineconfiguration'),(129,'Can delete org dynamic upgrade deadline configuration',44,'delete_orgdynamicupgradedeadlineconfiguration'),(130,'Can add student module history',45,'add_studentmodulehistory'),(131,'Can change student module history',45,'change_studentmodulehistory'),(132,'Can delete student module history',45,'delete_studentmodulehistory'),(133,'Can add x module student prefs field',46,'add_xmodulestudentprefsfield'),(134,'Can change x module student prefs field',46,'change_xmodulestudentprefsfield'),(135,'Can delete x module student prefs field',46,'delete_xmodulestudentprefsfield'),(136,'Can add student module',47,'add_studentmodule'),(137,'Can change student module',47,'change_studentmodule'),(138,'Can delete student module',47,'delete_studentmodule'),(139,'Can add dynamic upgrade deadline configuration',48,'add_dynamicupgradedeadlineconfiguration'),(140,'Can change dynamic upgrade deadline configuration',48,'change_dynamicupgradedeadlineconfiguration'),(141,'Can delete dynamic upgrade deadline configuration',48,'delete_dynamicupgradedeadlineconfiguration'),(142,'Can add offline computed grade log',49,'add_offlinecomputedgradelog'),(143,'Can change offline computed grade log',49,'change_offlinecomputedgradelog'),(144,'Can delete offline computed grade log',49,'delete_offlinecomputedgradelog'),(145,'Can add x module student info field',50,'add_xmodulestudentinfofield'),(146,'Can change x module student info field',50,'change_xmodulestudentinfofield'),(147,'Can delete x module student info field',50,'delete_xmodulestudentinfofield'),(148,'Can add student module history extended',51,'add_studentmodulehistoryextended'),(149,'Can change student module history extended',51,'change_studentmodulehistoryextended'),(150,'Can delete student module history extended',51,'delete_studentmodulehistoryextended'),(151,'Can add account recovery configuration',52,'add_accountrecoveryconfiguration'),(152,'Can change account recovery configuration',52,'change_accountrecoveryconfiguration'),(153,'Can delete account recovery configuration',52,'delete_accountrecoveryconfiguration'),(154,'Can add user signup source',53,'add_usersignupsource'),(155,'Can change user signup source',53,'change_usersignupsource'),(156,'Can delete user signup source',53,'delete_usersignupsource'),(157,'Can add pending name change',54,'add_pendingnamechange'),(158,'Can change pending name change',54,'change_pendingnamechange'),(159,'Can delete pending name change',54,'delete_pendingnamechange'),(160,'Can add anonymous user id',55,'add_anonymoususerid'),(161,'Can change anonymous user id',55,'change_anonymoususerid'),(162,'Can delete anonymous user id',55,'delete_anonymoususerid'),(163,'Can add pending secondary email change',56,'add_pendingsecondaryemailchange'),(164,'Can change pending secondary email change',56,'change_pendingsecondaryemailchange'),(165,'Can delete pending secondary email change',56,'delete_pendingsecondaryemailchange'),(166,'Can add logout view configuration',57,'add_logoutviewconfiguration'),(167,'Can change logout view configuration',57,'change_logoutviewconfiguration'),(168,'Can delete logout view configuration',57,'delete_logoutviewconfiguration'),(169,'Can add allowed auth user',58,'add_allowedauthuser'),(170,'Can change allowed auth user',58,'change_allowedauthuser'),(171,'Can delete allowed auth user',58,'delete_allowedauthuser'),(172,'Can add pending email change',59,'add_pendingemailchange'),(173,'Can change pending email change',59,'change_pendingemailchange'),(174,'Can delete pending email change',59,'delete_pendingemailchange'),(175,'Can add user attribute',60,'add_userattribute'),(176,'Can change user attribute',60,'change_userattribute'),(177,'Can delete user attribute',60,'delete_userattribute'),(178,'Can add bulk unenroll configuration',61,'add_bulkunenrollconfiguration'),(179,'Can change bulk unenroll configuration',61,'change_bulkunenrollconfiguration'),(180,'Can delete bulk unenroll configuration',61,'delete_bulkunenrollconfiguration'),(181,'Can add enrollment refund configuration',62,'add_enrollmentrefundconfiguration'),(182,'Can change enrollment refund configuration',62,'change_enrollmentrefundconfiguration'),(183,'Can delete enrollment refund configuration',62,'delete_enrollmentrefundconfiguration'),(184,'Can add entrance exam configuration',63,'add_entranceexamconfiguration'),(185,'Can change entrance exam configuration',63,'change_entranceexamconfiguration'),(186,'Can delete entrance exam configuration',63,'delete_entranceexamconfiguration'),(187,'Can add fbe enrollment exclusion',64,'add_fbeenrollmentexclusion'),(188,'Can change fbe enrollment exclusion',64,'change_fbeenrollmentexclusion'),(189,'Can delete fbe enrollment exclusion',64,'delete_fbeenrollmentexclusion'),(190,'Can add registration cookie configuration',65,'add_registrationcookieconfiguration'),(191,'Can change registration cookie configuration',65,'change_registrationcookieconfiguration'),(192,'Can delete registration cookie configuration',65,'delete_registrationcookieconfiguration'),(193,'Can add social link',66,'add_sociallink'),(194,'Can change social link',66,'change_sociallink'),(195,'Can delete social link',66,'delete_sociallink'),(196,'Can add user profile',67,'add_userprofile'),(197,'Can change user profile',67,'change_userprofile'),(198,'Can delete user profile',67,'delete_userprofile'),(199,'Can deactivate, but NOT delete users',67,'can_deactivate_users'),(200,'Can add registration',68,'add_registration'),(201,'Can change registration',68,'change_registration'),(202,'Can delete registration',68,'delete_registration'),(203,'Can add course enrollment allowed',69,'add_courseenrollmentallowed'),(204,'Can change course enrollment allowed',69,'change_courseenrollmentallowed'),(205,'Can delete course enrollment allowed',69,'delete_courseenrollmentallowed'),(206,'Can add dashboard configuration',70,'add_dashboardconfiguration'),(207,'Can change dashboard configuration',70,'change_dashboardconfiguration'),(208,'Can delete dashboard configuration',70,'delete_dashboardconfiguration'),(209,'Can add account recovery',71,'add_accountrecovery'),(210,'Can change account recovery',71,'change_accountrecovery'),(211,'Can delete account recovery',71,'delete_accountrecovery'),(212,'Can add historical manual enrollment audit',72,'add_historicalmanualenrollmentaudit'),(213,'Can change historical manual enrollment audit',72,'change_historicalmanualenrollmentaudit'),(214,'Can delete historical manual enrollment audit',72,'delete_historicalmanualenrollmentaudit'),(215,'Can add course enrollment',73,'add_courseenrollment'),(216,'Can change course enrollment',73,'change_courseenrollment'),(217,'Can delete course enrollment',73,'delete_courseenrollment'),(218,'Can add Login Failure',74,'add_loginfailures'),(219,'Can change Login Failure',74,'change_loginfailures'),(220,'Can delete Login Failure',74,'delete_loginfailures'),(221,'Can add user standing',75,'add_userstanding'),(222,'Can change user standing',75,'change_userstanding'),(223,'Can delete user standing',75,'delete_userstanding'),(224,'Can add course access role',76,'add_courseaccessrole'),(225,'Can change course access role',76,'change_courseaccessrole'),(226,'Can delete course access role',76,'delete_courseaccessrole'),(227,'Can add course enrollment attribute',77,'add_courseenrollmentattribute'),(228,'Can change course enrollment attribute',77,'change_courseenrollmentattribute'),(229,'Can delete course enrollment attribute',77,'delete_courseenrollmentattribute'),(230,'Can add language proficiency',78,'add_languageproficiency'),(231,'Can change language proficiency',78,'change_languageproficiency'),(232,'Can delete language proficiency',78,'delete_languageproficiency'),(233,'Can add historical course enrollment',79,'add_historicalcourseenrollment'),(234,'Can change historical course enrollment',79,'change_historicalcourseenrollment'),(235,'Can delete historical course enrollment',79,'delete_historicalcourseenrollment'),(236,'Can add manual enrollment audit',80,'add_manualenrollmentaudit'),(237,'Can change manual enrollment audit',80,'change_manualenrollmentaudit'),(238,'Can delete manual enrollment audit',80,'delete_manualenrollmentaudit'),(239,'Can add linked in add to profile configuration',81,'add_linkedinaddtoprofileconfiguration'),(240,'Can change linked in add to profile configuration',81,'change_linkedinaddtoprofileconfiguration'),(241,'Can delete linked in add to profile configuration',81,'delete_linkedinaddtoprofileconfiguration'),(242,'Can add user test group',82,'add_usertestgroup'),(243,'Can change user test group',82,'change_usertestgroup'),(244,'Can delete user test group',82,'delete_usertestgroup'),(245,'Can add rate limit configuration',83,'add_ratelimitconfiguration'),(246,'Can change rate limit configuration',83,'change_ratelimitconfiguration'),(247,'Can delete rate limit configuration',83,'delete_ratelimitconfiguration'),(248,'Can add certificate generation course setting',84,'add_certificategenerationcoursesetting'),(249,'Can change certificate generation course setting',84,'change_certificategenerationcoursesetting'),(250,'Can delete certificate generation course setting',84,'delete_certificategenerationcoursesetting'),(251,'Can add example certificate',85,'add_examplecertificate'),(252,'Can change example certificate',85,'change_examplecertificate'),(253,'Can delete example certificate',85,'delete_examplecertificate'),(254,'Can add historical generated certificate',86,'add_historicalgeneratedcertificate'),(255,'Can change historical generated certificate',86,'change_historicalgeneratedcertificate'),(256,'Can delete historical generated certificate',86,'delete_historicalgeneratedcertificate'),(257,'Can add certificate template asset',87,'add_certificatetemplateasset'),(258,'Can change certificate template asset',87,'change_certificatetemplateasset'),(259,'Can delete certificate template asset',87,'delete_certificatetemplateasset'),(260,'Can add certificate html view configuration',88,'add_certificatehtmlviewconfiguration'),(261,'Can change certificate html view configuration',88,'change_certificatehtmlviewconfiguration'),(262,'Can delete certificate html view configuration',88,'delete_certificatehtmlviewconfiguration'),(263,'Can add certificate whitelist',89,'add_certificatewhitelist'),(264,'Can change certificate whitelist',89,'change_certificatewhitelist'),(265,'Can delete certificate whitelist',89,'delete_certificatewhitelist'),(266,'Can add certificate generation configuration',90,'add_certificategenerationconfiguration'),(267,'Can change certificate generation configuration',90,'change_certificategenerationconfiguration'),(268,'Can delete certificate generation configuration',90,'delete_certificategenerationconfiguration'),(269,'Can add example certificate set',91,'add_examplecertificateset'),(270,'Can change example certificate set',91,'change_examplecertificateset'),(271,'Can delete example certificate set',91,'delete_examplecertificateset'),(272,'Can add certificate template',92,'add_certificatetemplate'),(273,'Can change certificate template',92,'change_certificatetemplate'),(274,'Can delete certificate template',92,'delete_certificatetemplate'),(275,'Can add generated certificate',93,'add_generatedcertificate'),(276,'Can change generated certificate',93,'change_generatedcertificate'),(277,'Can delete generated certificate',93,'delete_generatedcertificate'),(278,'Can add certificate invalidation',94,'add_certificateinvalidation'),(279,'Can change certificate invalidation',94,'change_certificateinvalidation'),(280,'Can delete certificate invalidation',94,'delete_certificateinvalidation'),(281,'Can add certificate generation history',95,'add_certificategenerationhistory'),(282,'Can change certificate generation history',95,'change_certificategenerationhistory'),(283,'Can delete certificate generation history',95,'delete_certificategenerationhistory'),(284,'Can add instructor task',96,'add_instructortask'),(285,'Can change instructor task',96,'change_instructortask'),(286,'Can delete instructor task',96,'delete_instructortask'),(287,'Can add grade report setting',97,'add_gradereportsetting'),(288,'Can change grade report setting',97,'change_gradereportsetting'),(289,'Can delete grade report setting',97,'delete_gradereportsetting'),(290,'Can add cohort membership',98,'add_cohortmembership'),(291,'Can change cohort membership',98,'change_cohortmembership'),(292,'Can delete cohort membership',98,'delete_cohortmembership'),(293,'Can add course cohort',99,'add_coursecohort'),(294,'Can change course cohort',99,'change_coursecohort'),(295,'Can delete course cohort',99,'delete_coursecohort'),(296,'Can add course user group',100,'add_courseusergroup'),(297,'Can change course user group',100,'change_courseusergroup'),(298,'Can delete course user group',100,'delete_courseusergroup'),(299,'Can add unregistered learner cohort assignments',101,'add_unregisteredlearnercohortassignments'),(300,'Can change unregistered learner cohort assignments',101,'change_unregisteredlearnercohortassignments'),(301,'Can delete unregistered learner cohort assignments',101,'delete_unregisteredlearnercohortassignments'),(302,'Can add course cohorts settings',102,'add_coursecohortssettings'),(303,'Can change course cohorts settings',102,'change_coursecohortssettings'),(304,'Can delete course cohorts settings',102,'delete_coursecohortssettings'),(305,'Can add course user group partition group',103,'add_courseusergrouppartitiongroup'),(306,'Can change course user group partition group',103,'change_courseusergrouppartitiongroup'),(307,'Can delete course user group partition group',103,'delete_courseusergrouppartitiongroup'),(308,'Can add optout',104,'add_optout'),(309,'Can change optout',104,'change_optout'),(310,'Can delete optout',104,'delete_optout'),(311,'Can add course email',105,'add_courseemail'),(312,'Can change course email',105,'change_courseemail'),(313,'Can delete course email',105,'delete_courseemail'),(314,'Can add course authorization',106,'add_courseauthorization'),(315,'Can change course authorization',106,'change_courseauthorization'),(316,'Can delete course authorization',106,'delete_courseauthorization'),(317,'Can add course email template',107,'add_courseemailtemplate'),(318,'Can change course email template',107,'change_courseemailtemplate'),(319,'Can delete course email template',107,'delete_courseemailtemplate'),(320,'Can add bulk email flag',108,'add_bulkemailflag'),(321,'Can change bulk email flag',108,'change_bulkemailflag'),(322,'Can delete bulk email flag',108,'delete_bulkemailflag'),(323,'Can add target',109,'add_target'),(324,'Can change target',109,'change_target'),(325,'Can delete target',109,'delete_target'),(326,'Can add course mode target',110,'add_coursemodetarget'),(327,'Can change course mode target',110,'change_coursemodetarget'),(328,'Can delete course mode target',110,'delete_coursemodetarget'),(329,'Can add cohort target',111,'add_cohorttarget'),(330,'Can change cohort target',111,'change_cohorttarget'),(331,'Can delete cohort target',111,'delete_cohorttarget'),(332,'Can add branding api config',112,'add_brandingapiconfig'),(333,'Can change branding api config',112,'change_brandingapiconfig'),(334,'Can delete branding api config',112,'delete_brandingapiconfig'),(335,'Can add branding info config',113,'add_brandinginfoconfig'),(336,'Can change branding info config',113,'change_brandinginfoconfig'),(337,'Can delete branding info config',113,'delete_brandinginfoconfig'),(338,'Can add grant',114,'add_grant'),(339,'Can change grant',114,'change_grant'),(340,'Can delete grant',114,'delete_grant'),(341,'Can add access token',115,'add_accesstoken'),(342,'Can change access token',115,'change_accesstoken'),(343,'Can delete access token',115,'delete_accesstoken'),(344,'Can add application',116,'add_application'),(345,'Can change application',116,'change_application'),(346,'Can delete application',116,'delete_application'),(347,'Can add refresh token',117,'add_refreshtoken'),(348,'Can change refresh token',117,'change_refreshtoken'),(349,'Can delete refresh token',117,'delete_refreshtoken'),(350,'Can add application access',118,'add_applicationaccess'),(351,'Can change application access',118,'change_applicationaccess'),(352,'Can delete application access',118,'delete_applicationaccess'),(353,'Can add restricted application',119,'add_restrictedapplication'),(354,'Can change restricted application',119,'change_restrictedapplication'),(355,'Can delete restricted application',119,'delete_restrictedapplication'),(356,'Can add application organization',120,'add_applicationorganization'),(357,'Can change application organization',120,'change_applicationorganization'),(358,'Can delete application organization',120,'delete_applicationorganization'),(359,'Can add Provider Configuration (LTI)',121,'add_ltiproviderconfig'),(360,'Can change Provider Configuration (LTI)',121,'change_ltiproviderconfig'),(361,'Can delete Provider Configuration (LTI)',121,'delete_ltiproviderconfig'),(362,'Can add Provider Configuration (SAML IdP)',122,'add_samlproviderconfig'),(363,'Can change Provider Configuration (SAML IdP)',122,'change_samlproviderconfig'),(364,'Can delete Provider Configuration (SAML IdP)',122,'delete_samlproviderconfig'),(365,'Can add SAML Provider Data',123,'add_samlproviderdata'),(366,'Can change SAML Provider Data',123,'change_samlproviderdata'),(367,'Can delete SAML Provider Data',123,'delete_samlproviderdata'),(368,'Can add SAML Configuration',124,'add_samlconfiguration'),(369,'Can change SAML Configuration',124,'change_samlconfiguration'),(370,'Can delete SAML Configuration',124,'delete_samlconfiguration'),(371,'Can add Provider Configuration (OAuth)',125,'add_oauth2providerconfig'),(372,'Can change Provider Configuration (OAuth)',125,'change_oauth2providerconfig'),(373,'Can delete Provider Configuration (OAuth)',125,'delete_oauth2providerconfig'),(374,'Can add system wide role assignment',126,'add_systemwideroleassignment'),(375,'Can change system wide role assignment',126,'change_systemwideroleassignment'),(376,'Can delete system wide role assignment',126,'delete_systemwideroleassignment'),(377,'Can add system wide role',127,'add_systemwiderole'),(378,'Can change system wide role',127,'change_systemwiderole'),(379,'Can delete system wide role',127,'delete_systemwiderole'),(380,'Can add article plugin',128,'add_articleplugin'),(381,'Can change article plugin',128,'change_articleplugin'),(382,'Can delete article plugin',128,'delete_articleplugin'),(383,'Can add Article for object',129,'add_articleforobject'),(384,'Can change Article for object',129,'change_articleforobject'),(385,'Can delete Article for object',129,'delete_articleforobject'),(386,'Can add simple plugin',130,'add_simpleplugin'),(387,'Can change simple plugin',130,'change_simpleplugin'),(388,'Can delete simple plugin',130,'delete_simpleplugin'),(389,'Can add article revision',131,'add_articlerevision'),(390,'Can change article revision',131,'change_articlerevision'),(391,'Can delete article revision',131,'delete_articlerevision'),(392,'Can add reusable plugin',132,'add_reusableplugin'),(393,'Can change reusable plugin',132,'change_reusableplugin'),(394,'Can delete reusable plugin',132,'delete_reusableplugin'),(395,'Can add revision plugin revision',133,'add_revisionpluginrevision'),(396,'Can change revision plugin revision',133,'change_revisionpluginrevision'),(397,'Can delete revision plugin revision',133,'delete_revisionpluginrevision'),(398,'Can add URL path',134,'add_urlpath'),(399,'Can change URL path',134,'change_urlpath'),(400,'Can delete URL path',134,'delete_urlpath'),(401,'Can add article',135,'add_article'),(402,'Can change article',135,'change_article'),(403,'Can delete article',135,'delete_article'),(404,'Can edit all articles and lock/unlock/restore',135,'moderate'),(405,'Can change ownership of any article',135,'assign'),(406,'Can assign permissions to other users',135,'grant'),(407,'Can add revision plugin',136,'add_revisionplugin'),(408,'Can change revision plugin',136,'change_revisionplugin'),(409,'Can delete revision plugin',136,'delete_revisionplugin'),(410,'Can add notification',137,'add_notification'),(411,'Can change notification',137,'change_notification'),(412,'Can delete notification',137,'delete_notification'),(413,'Can add settings',138,'add_settings'),(414,'Can change settings',138,'change_settings'),(415,'Can delete settings',138,'delete_settings'),(416,'Can add subscription',139,'add_subscription'),(417,'Can change subscription',139,'change_subscription'),(418,'Can delete subscription',139,'delete_subscription'),(419,'Can add type',140,'add_notificationtype'),(420,'Can change type',140,'change_notificationtype'),(421,'Can delete type',140,'delete_notificationtype'),(422,'Can add log entry',141,'add_logentry'),(423,'Can change log entry',141,'change_logentry'),(424,'Can delete log entry',141,'delete_logentry'),(425,'Can add permission',142,'add_permission'),(426,'Can change permission',142,'change_permission'),(427,'Can delete permission',142,'delete_permission'),(428,'Can add forums config',143,'add_forumsconfig'),(429,'Can change forums config',143,'change_forumsconfig'),(430,'Can delete forums config',143,'delete_forumsconfig'),(431,'Can add role',144,'add_role'),(432,'Can change role',144,'change_role'),(433,'Can delete role',144,'delete_role'),(434,'Can add course discussion settings',145,'add_coursediscussionsettings'),(435,'Can change course discussion settings',145,'change_coursediscussionsettings'),(436,'Can delete course discussion settings',145,'delete_coursediscussionsettings'),(437,'Can add discussions id mapping',146,'add_discussionsidmapping'),(438,'Can change discussions id mapping',146,'change_discussionsidmapping'),(439,'Can delete discussions id mapping',146,'delete_discussionsidmapping'),(440,'Can add splash config',147,'add_splashconfig'),(441,'Can change splash config',147,'change_splashconfig'),(442,'Can delete splash config',147,'delete_splashconfig'),(443,'Can add user course tag',148,'add_usercoursetag'),(444,'Can change user course tag',148,'change_usercoursetag'),(445,'Can delete user course tag',148,'delete_usercoursetag'),(446,'Can add User Retirement Reporting Status',149,'add_userretirementpartnerreportingstatus'),(447,'Can change User Retirement Reporting Status',149,'change_userretirementpartnerreportingstatus'),(448,'Can delete User Retirement Reporting Status',149,'delete_userretirementpartnerreportingstatus'),(449,'Can add user preference',150,'add_userpreference'),(450,'Can change user preference',150,'change_userpreference'),(451,'Can delete user preference',150,'delete_userpreference'),(452,'Can add User Retirement Status',151,'add_userretirementstatus'),(453,'Can change User Retirement Status',151,'change_userretirementstatus'),(454,'Can delete User Retirement Status',151,'delete_userretirementstatus'),(455,'Can add retirement state',152,'add_retirementstate'),(456,'Can change retirement state',152,'change_retirementstate'),(457,'Can delete retirement state',152,'delete_retirementstate'),(458,'Can add User Retirement Request',153,'add_userretirementrequest'),(459,'Can change User Retirement Request',153,'change_userretirementrequest'),(460,'Can delete User Retirement Request',153,'delete_userretirementrequest'),(461,'Can add user org tag',154,'add_userorgtag'),(462,'Can change user org tag',154,'change_userorgtag'),(463,'Can delete user org tag',154,'delete_userorgtag'),(464,'Can add donation configuration',155,'add_donationconfiguration'),(465,'Can change donation configuration',155,'change_donationconfiguration'),(466,'Can delete donation configuration',155,'delete_donationconfiguration'),(467,'Can add order',156,'add_order'),(468,'Can change order',156,'change_order'),(469,'Can delete order',156,'delete_order'),(470,'Can add invoice',157,'add_invoice'),(471,'Can change invoice',157,'change_invoice'),(472,'Can delete invoice',157,'delete_invoice'),(473,'Can add coupon',158,'add_coupon'),(474,'Can change coupon',158,'change_coupon'),(475,'Can delete coupon',158,'delete_coupon'),(476,'Can add course reg code item annotation',159,'add_courseregcodeitemannotation'),(477,'Can change course reg code item annotation',159,'change_courseregcodeitemannotation'),(478,'Can delete course reg code item annotation',159,'delete_courseregcodeitemannotation'),(479,'Can add invoice transaction',160,'add_invoicetransaction'),(480,'Can change invoice transaction',160,'change_invoicetransaction'),(481,'Can delete invoice transaction',160,'delete_invoicetransaction'),(482,'Can add coupon redemption',161,'add_couponredemption'),(483,'Can change coupon redemption',161,'change_couponredemption'),(484,'Can delete coupon redemption',161,'delete_couponredemption'),(485,'Can add paid course registration annotation',162,'add_paidcourseregistrationannotation'),(486,'Can change paid course registration annotation',162,'change_paidcourseregistrationannotation'),(487,'Can delete paid course registration annotation',162,'delete_paidcourseregistrationannotation'),(488,'Can add course registration code',163,'add_courseregistrationcode'),(489,'Can change course registration code',163,'change_courseregistrationcode'),(490,'Can delete course registration code',163,'delete_courseregistrationcode'),(491,'Can add registration code redemption',164,'add_registrationcoderedemption'),(492,'Can change registration code redemption',164,'change_registrationcoderedemption'),(493,'Can delete registration code redemption',164,'delete_registrationcoderedemption'),(494,'Can add order item',165,'add_orderitem'),(495,'Can change order item',165,'change_orderitem'),(496,'Can delete order item',165,'delete_orderitem'),(497,'Can add invoice item',166,'add_invoiceitem'),(498,'Can change invoice item',166,'change_invoiceitem'),(499,'Can delete invoice item',166,'delete_invoiceitem'),(500,'Can add invoice history',167,'add_invoicehistory'),(501,'Can change invoice history',167,'change_invoicehistory'),(502,'Can delete invoice history',167,'delete_invoicehistory'),(503,'Can add course registration code invoice item',168,'add_courseregistrationcodeinvoiceitem'),(504,'Can change course registration code invoice item',168,'change_courseregistrationcodeinvoiceitem'),(505,'Can delete course registration code invoice item',168,'delete_courseregistrationcodeinvoiceitem'),(506,'Can add course reg code item',169,'add_courseregcodeitem'),(507,'Can change course reg code item',169,'change_courseregcodeitem'),(508,'Can delete course reg code item',169,'delete_courseregcodeitem'),(509,'Can add certificate item',170,'add_certificateitem'),(510,'Can change certificate item',170,'change_certificateitem'),(511,'Can delete certificate item',170,'delete_certificateitem'),(512,'Can add paid course registration',171,'add_paidcourseregistration'),(513,'Can change paid course registration',171,'change_paidcourseregistration'),(514,'Can delete paid course registration',171,'delete_paidcourseregistration'),(515,'Can add donation',172,'add_donation'),(516,'Can change donation',172,'change_donation'),(517,'Can delete donation',172,'delete_donation'),(518,'Can add course modes archive',173,'add_coursemodesarchive'),(519,'Can change course modes archive',173,'change_coursemodesarchive'),(520,'Can delete course modes archive',173,'delete_coursemodesarchive'),(521,'Can add course mode',174,'add_coursemode'),(522,'Can change course mode',174,'change_coursemode'),(523,'Can delete course mode',174,'delete_coursemode'),(524,'Can add historical course mode',175,'add_historicalcoursemode'),(525,'Can change historical course mode',175,'change_historicalcoursemode'),(526,'Can delete historical course mode',175,'delete_historicalcoursemode'),(527,'Can add course mode expiration config',176,'add_coursemodeexpirationconfig'),(528,'Can change course mode expiration config',176,'change_coursemodeexpirationconfig'),(529,'Can delete course mode expiration config',176,'delete_coursemodeexpirationconfig'),(530,'Can add course entitlement',177,'add_courseentitlement'),(531,'Can change course entitlement',177,'change_courseentitlement'),(532,'Can delete course entitlement',177,'delete_courseentitlement'),(533,'Can add course entitlement policy',178,'add_courseentitlementpolicy'),(534,'Can change course entitlement policy',178,'change_courseentitlementpolicy'),(535,'Can delete course entitlement policy',178,'delete_courseentitlementpolicy'),(536,'Can add historical course entitlement support detail',179,'add_historicalcourseentitlementsupportdetail'),(537,'Can change historical course entitlement support detail',179,'change_historicalcourseentitlementsupportdetail'),(538,'Can delete historical course entitlement support detail',179,'delete_historicalcourseentitlementsupportdetail'),(539,'Can add course entitlement support detail',180,'add_courseentitlementsupportdetail'),(540,'Can change course entitlement support detail',180,'change_courseentitlementsupportdetail'),(541,'Can delete course entitlement support detail',180,'delete_courseentitlementsupportdetail'),(542,'Can add historical course entitlement',181,'add_historicalcourseentitlement'),(543,'Can change historical course entitlement',181,'change_historicalcourseentitlement'),(544,'Can delete historical course entitlement',181,'delete_historicalcourseentitlement'),(545,'Can add manual verification',182,'add_manualverification'),(546,'Can change manual verification',182,'change_manualverification'),(547,'Can delete manual verification',182,'delete_manualverification'),(548,'Can add sspv retry student argument',183,'add_sspverificationretryconfig'),(549,'Can change sspv retry student argument',183,'change_sspverificationretryconfig'),(550,'Can delete sspv retry student argument',183,'delete_sspverificationretryconfig'),(551,'Can add software secure photo verification',184,'add_softwaresecurephotoverification'),(552,'Can change software secure photo verification',184,'change_softwaresecurephotoverification'),(553,'Can delete software secure photo verification',184,'delete_softwaresecurephotoverification'),(554,'Can add verification deadline',185,'add_verificationdeadline'),(555,'Can change verification deadline',185,'change_verificationdeadline'),(556,'Can delete verification deadline',185,'delete_verificationdeadline'),(557,'Can add sso verification',186,'add_ssoverification'),(558,'Can change sso verification',186,'change_ssoverification'),(559,'Can delete sso verification',186,'delete_ssoverification'),(560,'Can add dark lang config',187,'add_darklangconfig'),(561,'Can change dark lang config',187,'change_darklangconfig'),(562,'Can delete dark lang config',187,'delete_darklangconfig'),(563,'Can add whitelisted rss url',188,'add_whitelistedrssurl'),(564,'Can change whitelisted rss url',188,'change_whitelistedrssurl'),(565,'Can delete whitelisted rss url',188,'delete_whitelistedrssurl'),(566,'Can add embargoed course',189,'add_embargoedcourse'),(567,'Can change embargoed course',189,'change_embargoedcourse'),(568,'Can delete embargoed course',189,'delete_embargoedcourse'),(569,'Can add country',190,'add_country'),(570,'Can change country',190,'change_country'),(571,'Can delete country',190,'delete_country'),(572,'Can add country access rule',191,'add_countryaccessrule'),(573,'Can change country access rule',191,'change_countryaccessrule'),(574,'Can delete country access rule',191,'delete_countryaccessrule'),(575,'Can add course access rule history',192,'add_courseaccessrulehistory'),(576,'Can change course access rule history',192,'change_courseaccessrulehistory'),(577,'Can delete course access rule history',192,'delete_courseaccessrulehistory'),(578,'Can add ip filter',193,'add_ipfilter'),(579,'Can change ip filter',193,'change_ipfilter'),(580,'Can delete ip filter',193,'delete_ipfilter'),(581,'Can add restricted course',194,'add_restrictedcourse'),(582,'Can change restricted course',194,'change_restrictedcourse'),(583,'Can delete restricted course',194,'delete_restrictedcourse'),(584,'Can add embargoed state',195,'add_embargoedstate'),(585,'Can change embargoed state',195,'change_embargoedstate'),(586,'Can delete embargoed state',195,'delete_embargoedstate'),(587,'Can add course rerun state',196,'add_coursererunstate'),(588,'Can change course rerun state',196,'change_coursererunstate'),(589,'Can delete course rerun state',196,'delete_coursererunstate'),(590,'Can add ignore mobile available flag config',197,'add_ignoremobileavailableflagconfig'),(591,'Can change ignore mobile available flag config',197,'change_ignoremobileavailableflagconfig'),(592,'Can delete ignore mobile available flag config',197,'delete_ignoremobileavailableflagconfig'),(593,'Can add app version config',198,'add_appversionconfig'),(594,'Can change app version config',198,'change_appversionconfig'),(595,'Can delete app version config',198,'delete_appversionconfig'),(596,'Can add mobile api config',199,'add_mobileapiconfig'),(597,'Can change mobile api config',199,'change_mobileapiconfig'),(598,'Can delete mobile api config',199,'delete_mobileapiconfig'),(599,'Can add association',200,'add_association'),(600,'Can change association',200,'change_association'),(601,'Can delete association',200,'delete_association'),(602,'Can add user social auth',201,'add_usersocialauth'),(603,'Can change user social auth',201,'change_usersocialauth'),(604,'Can delete user social auth',201,'delete_usersocialauth'),(605,'Can add code',202,'add_code'),(606,'Can change code',202,'change_code'),(607,'Can delete code',202,'delete_code'),(608,'Can add partial',203,'add_partial'),(609,'Can change partial',203,'change_partial'),(610,'Can delete partial',203,'delete_partial'),(611,'Can add nonce',204,'add_nonce'),(612,'Can change nonce',204,'change_nonce'),(613,'Can delete nonce',204,'delete_nonce'),(614,'Can add survey form',205,'add_surveyform'),(615,'Can change survey form',205,'change_surveyform'),(616,'Can delete survey form',205,'delete_surveyform'),(617,'Can add survey answer',206,'add_surveyanswer'),(618,'Can change survey answer',206,'change_surveyanswer'),(619,'Can delete survey answer',206,'delete_surveyanswer'),(620,'Can add x block asides config',207,'add_xblockasidesconfig'),(621,'Can change x block asides config',207,'change_xblockasidesconfig'),(622,'Can delete x block asides config',207,'delete_xblockasidesconfig'),(623,'Can add share',208,'add_share'),(624,'Can change share',208,'change_share'),(625,'Can delete share',208,'delete_share'),(626,'Can add answer',209,'add_answer'),(627,'Can change answer',209,'change_answer'),(628,'Can delete answer',209,'delete_answer'),(629,'Can add submission',210,'add_submission'),(630,'Can change submission',210,'change_submission'),(631,'Can delete submission',210,'delete_submission'),(632,'Can add team submission',211,'add_teamsubmission'),(633,'Can change team submission',211,'change_teamsubmission'),(634,'Can delete team submission',211,'delete_teamsubmission'),(635,'Can add student item',212,'add_studentitem'),(636,'Can change student item',212,'change_studentitem'),(637,'Can delete student item',212,'delete_studentitem'),(638,'Can add score',213,'add_score'),(639,'Can change score',213,'change_score'),(640,'Can delete score',213,'delete_score'),(641,'Can add score summary',214,'add_scoresummary'),(642,'Can change score summary',214,'change_scoresummary'),(643,'Can delete score summary',214,'delete_scoresummary'),(644,'Can add score annotation',215,'add_scoreannotation'),(645,'Can change score annotation',215,'change_scoreannotation'),(646,'Can delete score annotation',215,'delete_scoreannotation'),(647,'Can add criterion option',216,'add_criterionoption'),(648,'Can change criterion option',216,'change_criterionoption'),(649,'Can delete criterion option',216,'delete_criterionoption'),(650,'Can add peer workflow',217,'add_peerworkflow'),(651,'Can change peer workflow',217,'change_peerworkflow'),(652,'Can delete peer workflow',217,'delete_peerworkflow'),(653,'Can add staff workflow',218,'add_staffworkflow'),(654,'Can change staff workflow',218,'change_staffworkflow'),(655,'Can delete staff workflow',218,'delete_staffworkflow'),(656,'Can add student training workflow item',219,'add_studenttrainingworkflowitem'),(657,'Can change student training workflow item',219,'change_studenttrainingworkflowitem'),(658,'Can delete student training workflow item',219,'delete_studenttrainingworkflowitem'),(659,'Can add assessment feedback',220,'add_assessmentfeedback'),(660,'Can change assessment feedback',220,'change_assessmentfeedback'),(661,'Can delete assessment feedback',220,'delete_assessmentfeedback'),(662,'Can add rubric',221,'add_rubric'),(663,'Can change rubric',221,'change_rubric'),(664,'Can delete rubric',221,'delete_rubric'),(665,'Can add historical shared file upload',222,'add_historicalsharedfileupload'),(666,'Can change historical shared file upload',222,'change_historicalsharedfileupload'),(667,'Can delete historical shared file upload',222,'delete_historicalsharedfileupload'),(668,'Can add team staff workflow',223,'add_teamstaffworkflow'),(669,'Can change team staff workflow',223,'change_teamstaffworkflow'),(670,'Can delete team staff workflow',223,'delete_teamstaffworkflow'),(671,'Can add assessment',224,'add_assessment'),(672,'Can change assessment',224,'change_assessment'),(673,'Can delete assessment',224,'delete_assessment'),(674,'Can add assessment part',225,'add_assessmentpart'),(675,'Can change assessment part',225,'change_assessmentpart'),(676,'Can delete assessment part',225,'delete_assessmentpart'),(677,'Can add shared file upload',226,'add_sharedfileupload'),(678,'Can change shared file upload',226,'change_sharedfileupload'),(679,'Can delete shared file upload',226,'delete_sharedfileupload'),(680,'Can add criterion',227,'add_criterion'),(681,'Can change criterion',227,'change_criterion'),(682,'Can delete criterion',227,'delete_criterion'),(683,'Can add peer workflow item',228,'add_peerworkflowitem'),(684,'Can change peer workflow item',228,'change_peerworkflowitem'),(685,'Can delete peer workflow item',228,'delete_peerworkflowitem'),(686,'Can add training example',229,'add_trainingexample'),(687,'Can change training example',229,'change_trainingexample'),(688,'Can delete training example',229,'delete_trainingexample'),(689,'Can add student training workflow',230,'add_studenttrainingworkflow'),(690,'Can change student training workflow',230,'change_studenttrainingworkflow'),(691,'Can delete student training workflow',230,'delete_studenttrainingworkflow'),(692,'Can add assessment feedback option',231,'add_assessmentfeedbackoption'),(693,'Can change assessment feedback option',231,'change_assessmentfeedbackoption'),(694,'Can delete assessment feedback option',231,'delete_assessmentfeedbackoption'),(695,'Can add assessment workflow',232,'add_assessmentworkflow'),(696,'Can change assessment workflow',232,'change_assessmentworkflow'),(697,'Can delete assessment workflow',232,'delete_assessmentworkflow'),(698,'Can add team assessment workflow',233,'add_teamassessmentworkflow'),(699,'Can change team assessment workflow',233,'change_teamassessmentworkflow'),(700,'Can delete team assessment workflow',233,'delete_teamassessmentworkflow'),(701,'Can add assessment workflow step',234,'add_assessmentworkflowstep'),(702,'Can change assessment workflow step',234,'change_assessmentworkflowstep'),(703,'Can delete assessment workflow step',234,'delete_assessmentworkflowstep'),(704,'Can add assessment workflow cancellation',235,'add_assessmentworkflowcancellation'),(705,'Can change assessment workflow cancellation',235,'change_assessmentworkflowcancellation'),(706,'Can delete assessment workflow cancellation',235,'delete_assessmentworkflowcancellation'),(707,'Can add encoded video',236,'add_encodedvideo'),(708,'Can change encoded video',236,'change_encodedvideo'),(709,'Can delete encoded video',236,'delete_encodedvideo'),(710,'Can add course video',237,'add_coursevideo'),(711,'Can change course video',237,'change_coursevideo'),(712,'Can delete course video',237,'delete_coursevideo'),(713,'Can add profile',238,'add_profile'),(714,'Can change profile',238,'change_profile'),(715,'Can delete profile',238,'delete_profile'),(716,'Can add video transcript',239,'add_videotranscript'),(717,'Can change video transcript',239,'change_videotranscript'),(718,'Can delete video transcript',239,'delete_videotranscript'),(719,'Can add video',240,'add_video'),(720,'Can change video',240,'change_video'),(721,'Can delete video',240,'delete_video'),(722,'Can add transcript preference',241,'add_transcriptpreference'),(723,'Can change transcript preference',241,'change_transcriptpreference'),(724,'Can delete transcript preference',241,'delete_transcriptpreference'),(725,'Can add video image',242,'add_videoimage'),(726,'Can change video image',242,'change_videoimage'),(727,'Can delete video image',242,'delete_videoimage'),(728,'Can add third party transcript credentials state',243,'add_thirdpartytranscriptcredentialsstate'),(729,'Can change third party transcript credentials state',243,'change_thirdpartytranscriptcredentialsstate'),(730,'Can delete third party transcript credentials state',243,'delete_thirdpartytranscriptcredentialsstate'),(731,'Can add transcript credentials',244,'add_transcriptcredentials'),(732,'Can change transcript credentials',244,'change_transcriptcredentials'),(733,'Can delete transcript credentials',244,'delete_transcriptcredentials'),(734,'Can add historical course overview',245,'add_historicalcourseoverview'),(735,'Can change historical course overview',245,'change_historicalcourseoverview'),(736,'Can delete historical course overview',245,'delete_historicalcourseoverview'),(737,'Can add course overview image set',246,'add_courseoverviewimageset'),(738,'Can change course overview image set',246,'change_courseoverviewimageset'),(739,'Can delete course overview image set',246,'delete_courseoverviewimageset'),(740,'Can add course overview image config',247,'add_courseoverviewimageconfig'),(741,'Can change course overview image config',247,'change_courseoverviewimageconfig'),(742,'Can delete course overview image config',247,'delete_courseoverviewimageconfig'),(743,'Can add course overview tab',248,'add_courseoverviewtab'),(744,'Can change course overview tab',248,'change_courseoverviewtab'),(745,'Can delete course overview tab',248,'delete_courseoverviewtab'),(746,'Can add course overview',249,'add_courseoverview'),(747,'Can change course overview',249,'change_courseoverview'),(748,'Can delete course overview',249,'delete_courseoverview'),(749,'Can add simulate_publish argument',250,'add_simulatecoursepublishconfig'),(750,'Can change simulate_publish argument',250,'change_simulatecoursepublishconfig'),(751,'Can delete simulate_publish argument',250,'delete_simulatecoursepublishconfig'),(752,'Can add block structure model',251,'add_blockstructuremodel'),(753,'Can change block structure model',251,'change_blockstructuremodel'),(754,'Can delete block structure model',251,'delete_blockstructuremodel'),(755,'Can add block structure configuration',252,'add_blockstructureconfiguration'),(756,'Can change block structure configuration',252,'change_blockstructureconfiguration'),(757,'Can delete block structure configuration',252,'delete_blockstructureconfiguration'),(758,'Can add x domain proxy configuration',253,'add_xdomainproxyconfiguration'),(759,'Can change x domain proxy configuration',253,'change_xdomainproxyconfiguration'),(760,'Can delete x domain proxy configuration',253,'delete_xdomainproxyconfiguration'),(761,'Can add commerce configuration',254,'add_commerceconfiguration'),(762,'Can change commerce configuration',254,'change_commerceconfiguration'),(763,'Can delete commerce configuration',254,'delete_commerceconfiguration'),(764,'Can add credit provider',255,'add_creditprovider'),(765,'Can change credit provider',255,'change_creditprovider'),(766,'Can delete credit provider',255,'delete_creditprovider'),(767,'Can add credit config',256,'add_creditconfig'),(768,'Can change credit config',256,'change_creditconfig'),(769,'Can delete credit config',256,'delete_creditconfig'),(770,'Can add credit requirement status',257,'add_creditrequirementstatus'),(771,'Can change credit requirement status',257,'change_creditrequirementstatus'),(772,'Can delete credit requirement status',257,'delete_creditrequirementstatus'),(773,'Can add credit course',258,'add_creditcourse'),(774,'Can change credit course',258,'change_creditcourse'),(775,'Can delete credit course',258,'delete_creditcourse'),(776,'Can add credit eligibility',259,'add_crediteligibility'),(777,'Can change credit eligibility',259,'change_crediteligibility'),(778,'Can delete credit eligibility',259,'delete_crediteligibility'),(779,'Can add credit request',260,'add_creditrequest'),(780,'Can change credit request',260,'change_creditrequest'),(781,'Can delete credit request',260,'delete_creditrequest'),(782,'Can add credit requirement',261,'add_creditrequirement'),(783,'Can change credit requirement',261,'change_creditrequirement'),(784,'Can delete credit requirement',261,'delete_creditrequirement'),(785,'Can add course team membership',262,'add_courseteammembership'),(786,'Can change course team membership',262,'change_courseteammembership'),(787,'Can delete course team membership',262,'delete_courseteammembership'),(788,'Can add course team',263,'add_courseteam'),(789,'Can change course team',263,'change_courseteam'),(790,'Can delete course team',263,'delete_courseteam'),(791,'Can add x block configuration',264,'add_xblockconfiguration'),(792,'Can change x block configuration',264,'change_xblockconfiguration'),(793,'Can delete x block configuration',264,'delete_xblockconfiguration'),(794,'Can add x block studio configuration flag',265,'add_xblockstudioconfigurationflag'),(795,'Can change x block studio configuration flag',265,'change_xblockstudioconfigurationflag'),(796,'Can delete x block studio configuration flag',265,'delete_xblockstudioconfigurationflag'),(797,'Can add x block studio configuration',266,'add_xblockstudioconfiguration'),(798,'Can change x block studio configuration',266,'change_xblockstudioconfiguration'),(799,'Can delete x block studio configuration',266,'delete_xblockstudioconfiguration'),(800,'Can add programs api config',267,'add_programsapiconfig'),(801,'Can change programs api config',267,'change_programsapiconfig'),(802,'Can delete programs api config',267,'delete_programsapiconfig'),(803,'Can add backpopulate_program_credentials argument',268,'add_customprogramsconfig'),(804,'Can change backpopulate_program_credentials argument',268,'change_customprogramsconfig'),(805,'Can delete backpopulate_program_credentials argument',268,'delete_customprogramsconfig'),(806,'Can add catalog integration',269,'add_catalogintegration'),(807,'Can change catalog integration',269,'change_catalogintegration'),(808,'Can delete catalog integration',269,'delete_catalogintegration'),(809,'Can add self paced configuration',270,'add_selfpacedconfiguration'),(810,'Can change self paced configuration',270,'change_selfpacedconfiguration'),(811,'Can delete self paced configuration',270,'delete_selfpacedconfiguration'),(812,'Can add kv store',271,'add_kvstore'),(813,'Can change kv store',271,'change_kvstore'),(814,'Can delete kv store',271,'delete_kvstore'),(815,'Can add user milestone',272,'add_usermilestone'),(816,'Can change user milestone',272,'change_usermilestone'),(817,'Can delete user milestone',272,'delete_usermilestone'),(818,'Can add milestone',273,'add_milestone'),(819,'Can change milestone',273,'change_milestone'),(820,'Can delete milestone',273,'delete_milestone'),(821,'Can add course milestone',274,'add_coursemilestone'),(822,'Can change course milestone',274,'change_coursemilestone'),(823,'Can delete course milestone',274,'delete_coursemilestone'),(824,'Can add milestone relationship type',275,'add_milestonerelationshiptype'),(825,'Can change milestone relationship type',275,'change_milestonerelationshiptype'),(826,'Can delete milestone relationship type',275,'delete_milestonerelationshiptype'),(827,'Can add course content milestone',276,'add_coursecontentmilestone'),(828,'Can change course content milestone',276,'change_coursecontentmilestone'),(829,'Can delete course content milestone',276,'delete_coursecontentmilestone'),(830,'Can add api access request',1,'add_apiaccessrequest'),(831,'Can change api access request',1,'change_apiaccessrequest'),(832,'Can delete api access request',1,'delete_apiaccessrequest'),(833,'Can add api access config',277,'add_apiaccessconfig'),(834,'Can change api access config',277,'change_apiaccessconfig'),(835,'Can delete api access config',277,'delete_apiaccessconfig'),(836,'Can add catalog',278,'add_catalog'),(837,'Can change catalog',278,'change_catalog'),(838,'Can delete catalog',278,'delete_catalog'),(839,'Can add migrate verified track cohorts setting',279,'add_migrateverifiedtrackcohortssetting'),(840,'Can change migrate verified track cohorts setting',279,'change_migrateverifiedtrackcohortssetting'),(841,'Can delete migrate verified track cohorts setting',279,'delete_migrateverifiedtrackcohortssetting'),(842,'Can add verified track cohorted course',280,'add_verifiedtrackcohortedcourse'),(843,'Can change verified track cohorted course',280,'change_verifiedtrackcohortedcourse'),(844,'Can delete verified track cohorted course',280,'delete_verifiedtrackcohortedcourse'),(845,'Can add badge assertion',281,'add_badgeassertion'),(846,'Can change badge assertion',281,'change_badgeassertion'),(847,'Can delete badge assertion',281,'delete_badgeassertion'),(848,'Can add course complete image configuration',282,'add_coursecompleteimageconfiguration'),(849,'Can change course complete image configuration',282,'change_coursecompleteimageconfiguration'),(850,'Can delete course complete image configuration',282,'delete_coursecompleteimageconfiguration'),(851,'Can add badge class',283,'add_badgeclass'),(852,'Can change badge class',283,'change_badgeclass'),(853,'Can delete badge class',283,'delete_badgeclass'),(854,'Can add course event badges configuration',284,'add_courseeventbadgesconfiguration'),(855,'Can change course event badges configuration',284,'change_courseeventbadgesconfiguration'),(856,'Can delete course event badges configuration',284,'delete_courseeventbadgesconfiguration'),(857,'Can add email marketing configuration',285,'add_emailmarketingconfiguration'),(858,'Can change email marketing configuration',285,'change_emailmarketingconfiguration'),(859,'Can delete email marketing configuration',285,'delete_emailmarketingconfiguration'),(860,'Can add failed task',286,'add_failedtask'),(861,'Can change failed task',286,'change_failedtask'),(862,'Can delete failed task',286,'delete_failedtask'),(863,'Can add crawlers config',287,'add_crawlersconfig'),(864,'Can change crawlers config',287,'change_crawlersconfig'),(865,'Can delete crawlers config',287,'delete_crawlersconfig'),(866,'Can add Waffle flag course override',288,'add_waffleflagcourseoverridemodel'),(867,'Can change Waffle flag course override',288,'change_waffleflagcourseoverridemodel'),(868,'Can delete Waffle flag course override',288,'delete_waffleflagcourseoverridemodel'),(869,'Can add course goal',289,'add_coursegoal'),(870,'Can change course goal',289,'change_coursegoal'),(871,'Can delete course goal',289,'delete_coursegoal'),(872,'Can add historical user calendar sync config',290,'add_historicalusercalendarsyncconfig'),(873,'Can change historical user calendar sync config',290,'change_historicalusercalendarsyncconfig'),(874,'Can delete historical user calendar sync config',290,'delete_historicalusercalendarsyncconfig'),(875,'Can add user calendar sync config',291,'add_usercalendarsyncconfig'),(876,'Can change user calendar sync config',291,'change_usercalendarsyncconfig'),(877,'Can delete user calendar sync config',291,'delete_usercalendarsyncconfig'),(878,'Can add course duration limit config',292,'add_coursedurationlimitconfig'),(879,'Can change course duration limit config',292,'change_coursedurationlimitconfig'),(880,'Can delete course duration limit config',292,'delete_coursedurationlimitconfig'),(881,'Can add content type gating config',293,'add_contenttypegatingconfig'),(882,'Can change content type gating config',293,'change_contenttypegatingconfig'),(883,'Can delete content type gating config',293,'delete_contenttypegatingconfig'),(884,'Can add discount percentage config',294,'add_discountpercentageconfig'),(885,'Can change discount percentage config',294,'change_discountpercentageconfig'),(886,'Can delete discount percentage config',294,'delete_discountpercentageconfig'),(887,'Can add discount restriction config',295,'add_discountrestrictionconfig'),(888,'Can change discount restriction config',295,'change_discountrestrictionconfig'),(889,'Can delete discount restriction config',295,'delete_discountrestrictionconfig'),(890,'Can add historical Experiment Key-Value Pair',296,'add_historicalexperimentkeyvalue'),(891,'Can change historical Experiment Key-Value Pair',296,'change_historicalexperimentkeyvalue'),(892,'Can delete historical Experiment Key-Value Pair',296,'delete_historicalexperimentkeyvalue'),(893,'Can add Experiment Data',297,'add_experimentdata'),(894,'Can change Experiment Data',297,'change_experimentdata'),(895,'Can delete Experiment Data',297,'delete_experimentdata'),(896,'Can add Experiment Key-Value Pair',298,'add_experimentkeyvalue'),(897,'Can change Experiment Key-Value Pair',298,'change_experimentkeyvalue'),(898,'Can delete Experiment Key-Value Pair',298,'delete_experimentkeyvalue'),(899,'Can add self paced relative dates config',299,'add_selfpacedrelativedatesconfig'),(900,'Can change self paced relative dates config',299,'change_selfpacedrelativedatesconfig'),(901,'Can delete self paced relative dates config',299,'delete_selfpacedrelativedatesconfig'),(902,'Can add historical external id',300,'add_historicalexternalid'),(903,'Can change historical external id',300,'change_historicalexternalid'),(904,'Can delete historical external id',300,'delete_historicalexternalid'),(905,'Can add external id',301,'add_externalid'),(906,'Can change external id',301,'change_externalid'),(907,'Can delete external id',301,'delete_externalid'),(908,'Can add historical external id type',302,'add_historicalexternalidtype'),(909,'Can change historical external id type',302,'change_historicalexternalidtype'),(910,'Can delete historical external id type',302,'delete_historicalexternalidtype'),(911,'Can add external id type',303,'add_externalidtype'),(912,'Can change external id type',303,'change_externalidtype'),(913,'Can delete external id type',303,'delete_externalidtype'),(914,'Can add Schedule',304,'add_schedule'),(915,'Can change Schedule',304,'change_schedule'),(916,'Can delete Schedule',304,'delete_schedule'),(917,'Can add historical Schedule',305,'add_historicalschedule'),(918,'Can change historical Schedule',305,'change_historicalschedule'),(919,'Can delete historical Schedule',305,'delete_historicalschedule'),(920,'Can add schedule config',306,'add_scheduleconfig'),(921,'Can change schedule config',306,'change_scheduleconfig'),(922,'Can delete schedule config',306,'delete_scheduleconfig'),(923,'Can add schedule experience',307,'add_scheduleexperience'),(924,'Can change schedule experience',307,'change_scheduleexperience'),(925,'Can delete schedule experience',307,'delete_scheduleexperience'),(926,'Can add organization',308,'add_organization'),(927,'Can change organization',308,'change_organization'),(928,'Can delete organization',308,'delete_organization'),(929,'Can add historical organization',309,'add_historicalorganization'),(930,'Can change historical organization',309,'change_historicalorganization'),(931,'Can delete historical organization',309,'delete_historicalorganization'),(932,'Can add Link Course',310,'add_organizationcourse'),(933,'Can change Link Course',310,'change_organizationcourse'),(934,'Can delete Link Course',310,'delete_organizationcourse'),(935,'Can add historical enterprise course enrollment',311,'add_historicalenterprisecourseenrollment'),(936,'Can change historical enterprise course enrollment',311,'change_historicalenterprisecourseenrollment'),(937,'Can delete historical enterprise course enrollment',311,'delete_historicalenterprisecourseenrollment'),(938,'Can add system wide enterprise role',312,'add_systemwideenterpriserole'),(939,'Can change system wide enterprise role',312,'change_systemwideenterpriserole'),(940,'Can delete system wide enterprise role',312,'delete_systemwideenterpriserole'),(941,'Can add enterprise course enrollment',313,'add_enterprisecourseenrollment'),(942,'Can change enterprise course enrollment',313,'change_enterprisecourseenrollment'),(943,'Can delete enterprise course enrollment',313,'delete_enterprisecourseenrollment'),(944,'Can add enterprise feature role',314,'add_enterprisefeaturerole'),(945,'Can change enterprise feature role',314,'change_enterprisefeaturerole'),(946,'Can delete enterprise feature role',314,'delete_enterprisefeaturerole'),(947,'Can add historical pending enterprise customer user',315,'add_historicalpendingenterprisecustomeruser'),(948,'Can change historical pending enterprise customer user',315,'change_historicalpendingenterprisecustomeruser'),(949,'Can delete historical pending enterprise customer user',315,'delete_historicalpendingenterprisecustomeruser'),(950,'Can add Enterprise Customer',316,'add_enterprisecustomer'),(951,'Can change Enterprise Customer',316,'change_enterprisecustomer'),(952,'Can delete Enterprise Customer',316,'delete_enterprisecustomer'),(953,'Can add enterprise customer identity provider',317,'add_enterprisecustomeridentityprovider'),(954,'Can change enterprise customer identity provider',317,'change_enterprisecustomeridentityprovider'),(955,'Can delete enterprise customer identity provider',317,'delete_enterprisecustomeridentityprovider'),(956,'Can add Enterprise Customer Type',318,'add_enterprisecustomertype'),(957,'Can change Enterprise Customer Type',318,'change_enterprisecustomertype'),(958,'Can delete Enterprise Customer Type',318,'delete_enterprisecustomertype'),(959,'Can add historical pending enrollment',319,'add_historicalpendingenrollment'),(960,'Can change historical pending enrollment',319,'change_historicalpendingenrollment'),(961,'Can delete historical pending enrollment',319,'delete_historicalpendingenrollment'),(962,'Can add enterprise customer reporting configuration',320,'add_enterprisecustomerreportingconfiguration'),(963,'Can change enterprise customer reporting configuration',320,'change_enterprisecustomerreportingconfiguration'),(964,'Can delete enterprise customer reporting configuration',320,'delete_enterprisecustomerreportingconfiguration'),(965,'Can add system wide enterprise user role assignment',321,'add_systemwideenterpriseuserroleassignment'),(966,'Can change system wide enterprise user role assignment',321,'change_systemwideenterpriseuserroleassignment'),(967,'Can delete system wide enterprise user role assignment',321,'delete_systemwideenterpriseuserroleassignment'),(968,'Can add Enterprise Catalog Query',322,'add_enterprisecatalogquery'),(969,'Can change Enterprise Catalog Query',322,'change_enterprisecatalogquery'),(970,'Can delete Enterprise Catalog Query',322,'delete_enterprisecatalogquery'),(971,'Can add historical Enterprise Customer Catalog',323,'add_historicalenterprisecustomercatalog'),(972,'Can change historical Enterprise Customer Catalog',323,'change_historicalenterprisecustomercatalog'),(973,'Can delete historical Enterprise Customer Catalog',323,'delete_historicalenterprisecustomercatalog'),(974,'Can add pending enterprise customer user',324,'add_pendingenterprisecustomeruser'),(975,'Can change pending enterprise customer user',324,'change_pendingenterprisecustomeruser'),(976,'Can delete pending enterprise customer user',324,'delete_pendingenterprisecustomeruser'),(977,'Can add enterprise feature user role assignment',325,'add_enterprisefeatureuserroleassignment'),(978,'Can change enterprise feature user role assignment',325,'change_enterprisefeatureuserroleassignment'),(979,'Can delete enterprise feature user role assignment',325,'delete_enterprisefeatureuserroleassignment'),(980,'Can add historical Enterprise Customer',326,'add_historicalenterprisecustomer'),(981,'Can change historical Enterprise Customer',326,'change_historicalenterprisecustomer'),(982,'Can delete historical Enterprise Customer',326,'delete_historicalenterprisecustomer'),(983,'Can add Enterprise Customer Catalog',327,'add_enterprisecustomercatalog'),(984,'Can change Enterprise Customer Catalog',327,'change_enterprisecustomercatalog'),(985,'Can delete Enterprise Customer Catalog',327,'delete_enterprisecustomercatalog'),(986,'Can add enrollment notification email template',328,'add_enrollmentnotificationemailtemplate'),(987,'Can change enrollment notification email template',328,'change_enrollmentnotificationemailtemplate'),(988,'Can delete enrollment notification email template',328,'delete_enrollmentnotificationemailtemplate'),(989,'Can add Enterprise Customer Learner',329,'add_enterprisecustomeruser'),(990,'Can change Enterprise Customer Learner',329,'change_enterprisecustomeruser'),(991,'Can delete Enterprise Customer Learner',329,'delete_enterprisecustomeruser'),(992,'Can add Branding Configuration',330,'add_enterprisecustomerbrandingconfiguration'),(993,'Can change Branding Configuration',330,'change_enterprisecustomerbrandingconfiguration'),(994,'Can delete Branding Configuration',330,'delete_enterprisecustomerbrandingconfiguration'),(995,'Can add enterprise enrollment source',331,'add_enterpriseenrollmentsource'),(996,'Can change enterprise enrollment source',331,'change_enterpriseenrollmentsource'),(997,'Can delete enterprise enrollment source',331,'delete_enterpriseenrollmentsource'),(998,'Can add historical enrollment notification email template',332,'add_historicalenrollmentnotificationemailtemplate'),(999,'Can change historical enrollment notification email template',332,'change_historicalenrollmentnotificationemailtemplate'),(1000,'Can delete historical enrollment notification email template',332,'delete_historicalenrollmentnotificationemailtemplate'),(1001,'Can add pending enrollment',333,'add_pendingenrollment'),(1002,'Can change pending enrollment',333,'change_pendingenrollment'),(1003,'Can delete pending enrollment',333,'delete_pendingenrollment'),(1004,'Can add historical Data Sharing Consent Record',334,'add_historicaldatasharingconsent'),(1005,'Can change historical Data Sharing Consent Record',334,'change_historicaldatasharingconsent'),(1006,'Can delete historical Data Sharing Consent Record',334,'delete_historicaldatasharingconsent'),(1007,'Can add Data Sharing Consent Record',335,'add_datasharingconsent'),(1008,'Can change Data Sharing Consent Record',335,'change_datasharingconsent'),(1009,'Can delete Data Sharing Consent Record',335,'delete_datasharingconsent'),(1010,'Can add data sharing consent text overrides',336,'add_datasharingconsenttextoverrides'),(1011,'Can change data sharing consent text overrides',336,'change_datasharingconsenttextoverrides'),(1012,'Can delete data sharing consent text overrides',336,'delete_datasharingconsenttextoverrides'),(1013,'Can add content metadata item transmission',337,'add_contentmetadataitemtransmission'),(1014,'Can change content metadata item transmission',337,'change_contentmetadataitemtransmission'),(1015,'Can delete content metadata item transmission',337,'delete_contentmetadataitemtransmission'),(1016,'Can add learner data transmission audit',338,'add_learnerdatatransmissionaudit'),(1017,'Can change learner data transmission audit',338,'change_learnerdatatransmissionaudit'),(1018,'Can delete learner data transmission audit',338,'delete_learnerdatatransmissionaudit'),(1019,'Can add degreed global configuration',339,'add_degreedglobalconfiguration'),(1020,'Can change degreed global configuration',339,'change_degreedglobalconfiguration'),(1021,'Can delete degreed global configuration',339,'delete_degreedglobalconfiguration'),(1022,'Can add degreed enterprise customer configuration',340,'add_degreedenterprisecustomerconfiguration'),(1023,'Can change degreed enterprise customer configuration',340,'change_degreedenterprisecustomerconfiguration'),(1024,'Can delete degreed enterprise customer configuration',340,'delete_degreedenterprisecustomerconfiguration'),(1025,'Can add historical degreed enterprise customer configuration',341,'add_historicaldegreedenterprisecustomerconfiguration'),(1026,'Can change historical degreed enterprise customer configuration',341,'change_historicaldegreedenterprisecustomerconfiguration'),(1027,'Can delete historical degreed enterprise customer configuration',341,'delete_historicaldegreedenterprisecustomerconfiguration'),(1028,'Can add degreed learner data transmission audit',342,'add_degreedlearnerdatatransmissionaudit'),(1029,'Can change degreed learner data transmission audit',342,'change_degreedlearnerdatatransmissionaudit'),(1030,'Can delete degreed learner data transmission audit',342,'delete_degreedlearnerdatatransmissionaudit'),(1031,'Can add sap success factors learner data transmission audit',343,'add_sapsuccessfactorslearnerdatatransmissionaudit'),(1032,'Can change sap success factors learner data transmission audit',343,'change_sapsuccessfactorslearnerdatatransmissionaudit'),(1033,'Can delete sap success factors learner data transmission audit',343,'delete_sapsuccessfactorslearnerdatatransmissionaudit'),(1034,'Can add sap success factors enterprise customer configuration',344,'add_sapsuccessfactorsenterprisecustomerconfiguration'),(1035,'Can change sap success factors enterprise customer configuration',344,'change_sapsuccessfactorsenterprisecustomerconfiguration'),(1036,'Can delete sap success factors enterprise customer configuration',344,'delete_sapsuccessfactorsenterprisecustomerconfiguration'),(1037,'Can add sap success factors global configuration',345,'add_sapsuccessfactorsglobalconfiguration'),(1038,'Can change sap success factors global configuration',345,'change_sapsuccessfactorsglobalconfiguration'),(1039,'Can delete sap success factors global configuration',345,'delete_sapsuccessfactorsglobalconfiguration'),(1040,'Can add cornerstone enterprise customer configuration',346,'add_cornerstoneenterprisecustomerconfiguration'),(1041,'Can change cornerstone enterprise customer configuration',346,'change_cornerstoneenterprisecustomerconfiguration'),(1042,'Can delete cornerstone enterprise customer configuration',346,'delete_cornerstoneenterprisecustomerconfiguration'),(1043,'Can add cornerstone global configuration',347,'add_cornerstoneglobalconfiguration'),(1044,'Can change cornerstone global configuration',347,'change_cornerstoneglobalconfiguration'),(1045,'Can delete cornerstone global configuration',347,'delete_cornerstoneglobalconfiguration'),(1046,'Can add cornerstone learner data transmission audit',348,'add_cornerstonelearnerdatatransmissionaudit'),(1047,'Can change cornerstone learner data transmission audit',348,'change_cornerstonelearnerdatatransmissionaudit'),(1048,'Can delete cornerstone learner data transmission audit',348,'delete_cornerstonelearnerdatatransmissionaudit'),(1049,'Can add historical cornerstone enterprise customer configuration',349,'add_historicalcornerstoneenterprisecustomerconfiguration'),(1050,'Can change historical cornerstone enterprise customer configuration',349,'change_historicalcornerstoneenterprisecustomerconfiguration'),(1051,'Can delete historical cornerstone enterprise customer configuration',349,'delete_historicalcornerstoneenterprisecustomerconfiguration'),(1052,'Can add xapi learner data transmission audit',350,'add_xapilearnerdatatransmissionaudit'),(1053,'Can change xapi learner data transmission audit',350,'change_xapilearnerdatatransmissionaudit'),(1054,'Can delete xapi learner data transmission audit',350,'delete_xapilearnerdatatransmissionaudit'),(1055,'Can add xapilrs configuration',351,'add_xapilrsconfiguration'),(1056,'Can change xapilrs configuration',351,'change_xapilrsconfiguration'),(1057,'Can delete xapilrs configuration',351,'delete_xapilrsconfiguration'),(1058,'Can add credentials api config',352,'add_credentialsapiconfig'),(1059,'Can change credentials api config',352,'change_credentialsapiconfig'),(1060,'Can delete credentials api config',352,'delete_credentialsapiconfig'),(1061,'Can add notify_credentials argument',353,'add_notifycredentialsconfig'),(1062,'Can change notify_credentials argument',353,'change_notifycredentialsconfig'),(1063,'Can delete notify_credentials argument',353,'delete_notifycredentialsconfig'),(1064,'Can add historical persistent subsection grade override',354,'add_historicalpersistentsubsectiongradeoverride'),(1065,'Can change historical persistent subsection grade override',354,'change_historicalpersistentsubsectiongradeoverride'),(1066,'Can delete historical persistent subsection grade override',354,'delete_historicalpersistentsubsectiongradeoverride'),(1067,'Can add persistent subsection grade override',355,'add_persistentsubsectiongradeoverride'),(1068,'Can change persistent subsection grade override',355,'change_persistentsubsectiongradeoverride'),(1069,'Can delete persistent subsection grade override',355,'delete_persistentsubsectiongradeoverride'),(1070,'Can add persistent grades enabled flag',356,'add_persistentgradesenabledflag'),(1071,'Can change persistent grades enabled flag',356,'change_persistentgradesenabledflag'),(1072,'Can delete persistent grades enabled flag',356,'delete_persistentgradesenabledflag'),(1073,'Can add compute grades setting',357,'add_computegradessetting'),(1074,'Can change compute grades setting',357,'change_computegradessetting'),(1075,'Can delete compute grades setting',357,'delete_computegradessetting'),(1076,'Can add visible blocks',358,'add_visibleblocks'),(1077,'Can change visible blocks',358,'change_visibleblocks'),(1078,'Can delete visible blocks',358,'delete_visibleblocks'),(1079,'Can add course persistent grades flag',359,'add_coursepersistentgradesflag'),(1080,'Can change course persistent grades flag',359,'change_coursepersistentgradesflag'),(1081,'Can delete course persistent grades flag',359,'delete_coursepersistentgradesflag'),(1082,'Can add persistent subsection grade',360,'add_persistentsubsectiongrade'),(1083,'Can change persistent subsection grade',360,'change_persistentsubsectiongrade'),(1084,'Can delete persistent subsection grade',360,'delete_persistentsubsectiongrade'),(1085,'Can add persistent course grade',361,'add_persistentcoursegrade'),(1086,'Can change persistent course grade',361,'change_persistentcoursegrade'),(1087,'Can delete persistent course grade',361,'delete_persistentcoursegrade'),(1088,'Can add program enrollment',362,'add_programenrollment'),(1089,'Can change program enrollment',362,'change_programenrollment'),(1090,'Can delete program enrollment',362,'delete_programenrollment'),(1091,'Can add course access role assignment',363,'add_courseaccessroleassignment'),(1092,'Can change course access role assignment',363,'change_courseaccessroleassignment'),(1093,'Can delete course access role assignment',363,'delete_courseaccessroleassignment'),(1094,'Can add historical program course enrollment',364,'add_historicalprogramcourseenrollment'),(1095,'Can change historical program course enrollment',364,'change_historicalprogramcourseenrollment'),(1096,'Can delete historical program course enrollment',364,'delete_historicalprogramcourseenrollment'),(1097,'Can add program course enrollment',365,'add_programcourseenrollment'),(1098,'Can change program course enrollment',365,'change_programcourseenrollment'),(1099,'Can delete program course enrollment',365,'delete_programcourseenrollment'),(1100,'Can add historical program enrollment',366,'add_historicalprogramenrollment'),(1101,'Can change historical program enrollment',366,'change_historicalprogramenrollment'),(1102,'Can delete historical program enrollment',366,'delete_historicalprogramenrollment'),(1103,'Can add site theme',367,'add_sitetheme'),(1104,'Can change site theme',367,'change_sitetheme'),(1105,'Can delete site theme',367,'delete_sitetheme'),(1106,'Can add x block cache',368,'add_xblockcache'),(1107,'Can change x block cache',368,'change_xblockcache'),(1108,'Can delete x block cache',368,'delete_xblockcache'),(1109,'Can add bookmark',369,'add_bookmark'),(1110,'Can change bookmark',369,'change_bookmark'),(1111,'Can delete bookmark',369,'delete_bookmark'),(1112,'Can add announcement',370,'add_announcement'),(1113,'Can change announcement',370,'change_announcement'),(1114,'Can delete announcement',370,'delete_announcement'),(1115,'Can add content library',371,'add_contentlibrary'),(1116,'Can change content library',371,'change_contentlibrary'),(1117,'Can delete content library',371,'delete_contentlibrary'),(1118,'Can add content library permission',372,'add_contentlibrarypermission'),(1119,'Can change content library permission',372,'change_contentlibrarypermission'),(1120,'Can delete content library permission',372,'delete_contentlibrarypermission'),(1121,'Can add csv operation',373,'add_csvoperation'),(1122,'Can change csv operation',373,'change_csvoperation'),(1123,'Can delete csv operation',373,'delete_csvoperation'),(1124,'Can add content date',374,'add_contentdate'),(1125,'Can change content date',374,'change_contentdate'),(1126,'Can delete content date',374,'delete_contentdate'),(1127,'Can add user date',375,'add_userdate'),(1128,'Can change user date',375,'change_userdate'),(1129,'Can delete user date',375,'delete_userdate'),(1130,'Can add date policy',376,'add_datepolicy'),(1131,'Can change date policy',376,'change_datepolicy'),(1132,'Can delete date policy',376,'delete_datepolicy'),(1133,'Can add proctored exam attempt history',377,'add_proctoredexamstudentattempthistory'),(1134,'Can change proctored exam attempt history',377,'change_proctoredexamstudentattempthistory'),(1135,'Can delete proctored exam attempt history',377,'delete_proctoredexamstudentattempthistory'),(1136,'Can add proctored exam',378,'add_proctoredexam'),(1137,'Can change proctored exam',378,'change_proctoredexam'),(1138,'Can delete proctored exam',378,'delete_proctoredexam'),(1139,'Can add proctored exam attempt',379,'add_proctoredexamstudentattempt'),(1140,'Can change proctored exam attempt',379,'change_proctoredexamstudentattempt'),(1141,'Can delete proctored exam attempt',379,'delete_proctoredexamstudentattempt'),(1142,'Can add proctored allowance',380,'add_proctoredexamstudentallowance'),(1143,'Can change proctored allowance',380,'change_proctoredexamstudentallowance'),(1144,'Can delete proctored allowance',380,'delete_proctoredexamstudentallowance'),(1145,'Can add proctored allowance history',381,'add_proctoredexamstudentallowancehistory'),(1146,'Can change proctored allowance history',381,'change_proctoredexamstudentallowancehistory'),(1147,'Can delete proctored allowance history',381,'delete_proctoredexamstudentallowancehistory'),(1148,'Can add Proctored exam software secure review',382,'add_proctoredexamsoftwaresecurereview'),(1149,'Can change Proctored exam software secure review',382,'change_proctoredexamsoftwaresecurereview'),(1150,'Can delete Proctored exam software secure review',382,'delete_proctoredexamsoftwaresecurereview'),(1151,'Can add Proctored exam review policy',383,'add_proctoredexamreviewpolicy'),(1152,'Can change Proctored exam review policy',383,'change_proctoredexamreviewpolicy'),(1153,'Can delete Proctored exam review policy',383,'delete_proctoredexamreviewpolicy'),(1154,'Can add proctored exam review policy history',384,'add_proctoredexamreviewpolicyhistory'),(1155,'Can change proctored exam review policy history',384,'change_proctoredexamreviewpolicyhistory'),(1156,'Can delete proctored exam review policy history',384,'delete_proctoredexamreviewpolicyhistory'),(1157,'Can add Proctored exam review archive',385,'add_proctoredexamsoftwaresecurereviewhistory'),(1158,'Can change Proctored exam review archive',385,'change_proctoredexamsoftwaresecurereviewhistory'),(1159,'Can delete Proctored exam review archive',385,'delete_proctoredexamsoftwaresecurereviewhistory'),(1160,'Can add proctored exam software secure comment',386,'add_proctoredexamsoftwaresecurecomment'),(1161,'Can change proctored exam software secure comment',386,'change_proctoredexamsoftwaresecurecomment'),(1162,'Can delete proctored exam software secure comment',386,'delete_proctoredexamsoftwaresecurecomment'),(1163,'Can add block completion',387,'add_blockcompletion'),(1164,'Can change block completion',387,'change_blockcompletion'),(1165,'Can delete block completion',387,'delete_blockcompletion'),(1166,'Can add score overrider',388,'add_scoreoverrider'),(1167,'Can change score overrider',388,'change_scoreoverrider'),(1168,'Can delete score overrider',388,'delete_scoreoverrider'),(1169,'Can add launch log',389,'add_launchlog'),(1170,'Can change launch log',389,'change_launchlog'),(1171,'Can delete launch log',389,'delete_launchlog'),(1172,'Can add lti credential',390,'add_lticredential'),(1173,'Can change lti credential',390,'change_lticredential'),(1174,'Can delete lti credential',390,'delete_lticredential'),(1175,'Can add pathway',391,'add_pathway'),(1176,'Can change pathway',391,'change_pathway'),(1177,'Can delete pathway',391,'delete_pathway'),(1178,'Can add video upload config',392,'add_videouploadconfig'),(1179,'Can change video upload config',392,'change_videouploadconfig'),(1180,'Can delete video upload config',392,'delete_videouploadconfig'),(1181,'Can add course creator',393,'add_coursecreator'),(1182,'Can change course creator',393,'change_coursecreator'),(1183,'Can delete course creator',393,'delete_coursecreator'),(1184,'Can add course edit lti fields enabled flag',394,'add_courseeditltifieldsenabledflag'),(1185,'Can change course edit lti fields enabled flag',394,'change_courseeditltifieldsenabledflag'),(1186,'Can delete course edit lti fields enabled flag',394,'delete_courseeditltifieldsenabledflag'),(1187,'Can add studio config',395,'add_studioconfig'),(1188,'Can change studio config',395,'change_studioconfig'),(1189,'Can delete studio config',395,'delete_studioconfig'),(1190,'Can add tag category',396,'add_tagcategories'),(1191,'Can change tag category',396,'change_tagcategories'),(1192,'Can delete tag category',396,'delete_tagcategories'),(1193,'Can add available tag value',397,'add_tagavailablevalues'),(1194,'Can change available tag value',397,'change_tagavailablevalues'),(1195,'Can delete available tag value',397,'delete_tagavailablevalues'),(1196,'Can add user task artifact',398,'add_usertaskartifact'),(1197,'Can change user task artifact',398,'change_usertaskartifact'),(1198,'Can delete user task artifact',398,'delete_usertaskartifact'),(1199,'Can add user task status',399,'add_usertaskstatus'),(1200,'Can change user task status',399,'change_usertaskstatus'),(1201,'Can delete user task status',399,'delete_usertaskstatus');
/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `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=utf8;
/*!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`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`password` varchar(128) NOT NULL,
`last_login` datetime(6) DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(150) NOT NULL,
`first_name` varchar(30) NOT NULL,
`last_name` varchar(30) NOT NULL,
`email` varchar(254) NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!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,'!sqHJ06uo4FRmt1p79GtfhiwLQwYqvkwfcodJsLUW',NULL,0,'ecommerce_worker','','','[email protected]',0,1,'2020-04-06 20:22:08.517644'),(2,'!qMygERD93HhSMdwO2keMofWzTyBYayrUDlP09WAP',NULL,0,'login_service_user','','','[email protected]',0,1,'2020-04-06 20:38:25.057381'),(3,'pbkdf2_sha256$36000$F6gaRZBsIOSQ$DEYG3JI1XxR8DxVqCM3V8zGazH0mLN6Ten5ZFLljGZA=',NULL,1,'edx','','','[email protected]',1,1,'2020-04-06 20:46:12.358488'),(4,'pbkdf2_sha256$36000$Hyc0SWrbguzA$nQJ8ZuiqrExJ4JL8Z6C3n+nJbXpZBd1/KiqK49TRlMQ=',NULL,0,'enterprise_worker','','','[email protected]',0,1,'2020-04-06 20:46:28.897730'),(5,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'honor','','','[email protected]',0,1,'2020-04-06 20:48:59.593809'),(6,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'audit','','','[email protected]',0,1,'2020-04-06 20:49:08.515509'),(7,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'verified','','','[email protected]',0,1,'2020-04-06 20:49:17.493748'),(8,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'staff','','','[email protected]',1,1,'2020-04-06 20:49:26.288782'),(9,'pbkdf2_sha256$36000$r3gdOd0YGoFx$h67Hx+NBujXtQmR30scgiAkGtB6S6k+xU8f3QlL/0vU=',NULL,1,'retirement_service_worker','','','[email protected]',1,1,'2020-04-06 20:59:51.644187');
/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `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=utf8;
/*!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`
--
/*!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=utf8;
/*!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`
--
/*!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,
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 AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!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 */;
INSERT INTO `auth_userprofile` VALUES (1,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,3,NULL),(2,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,4,NULL),(3,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,5,NULL),(4,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,6,NULL),(5,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,7,NULL),(6,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,8,NULL),(7,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,9,NULL);
/*!40000 ALTER TABLE `auth_userprofile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `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=utf8;
/*!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`
--
/*!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,