Updating Bokchoy testing database cache (#21519)

This commit is contained in:
edX cache uploader bot
2019-08-30 16:29:46 -04:00
committed by Jeremy Bowman
parent 8dc4fd1a2d
commit 37c599cbdc
6 changed files with 47 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
972df4ab12fa7b7a61ce6b81412dca1906ddba60
d8939e6864fb6a3ec5acdb318846806aa83c0122

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -366,7 +366,7 @@ CREATE TABLE `auth_permission` (
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=2354 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=2360 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `auth_registration`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
@@ -1190,6 +1190,38 @@ CREATE TABLE `consent_historicaldatasharingconsent` (
CONSTRAINT `consent_historicalda_history_user_id_08d7bf89_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 */;
DROP TABLE IF EXISTS `content_libraries_contentlibrary`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `content_libraries_contentlibrary` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`slug` varchar(50) NOT NULL,
`bundle_uuid` char(32) NOT NULL,
`allow_public_learning` tinyint(1) NOT NULL,
`allow_public_read` tinyint(1) NOT NULL,
`org_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bundle_uuid` (`bundle_uuid`),
UNIQUE KEY `content_libraries_contentlibrary_org_id_slug_2b964108_uniq` (`org_id`,`slug`),
KEY `content_libraries_contentlibrary_slug_30d5507f` (`slug`),
CONSTRAINT `content_libraries_co_org_id_b945a402_fk_organizat` FOREIGN KEY (`org_id`) REFERENCES `organizations_organization` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `content_libraries_contentlibrarypermission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `content_libraries_contentlibrarypermission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`access_level` varchar(30) NOT NULL,
`library_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `content_libraries_co_library_id_51247096_fk_content_l` (`library_id`),
KEY `content_libraries_co_user_id_b071c54d_fk_auth_user` (`user_id`),
CONSTRAINT `content_libraries_co_library_id_51247096_fk_content_l` FOREIGN KEY (`library_id`) REFERENCES `content_libraries_contentlibrary` (`id`),
CONSTRAINT `content_libraries_co_user_id_b071c54d_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `content_type_gating_contenttypegatingconfig`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
@@ -1867,7 +1899,7 @@ DROP TABLE IF EXISTS `courseware_studentmodule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `courseware_studentmodule` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`module_type` varchar(32) NOT NULL,
`module_id` varchar(255) NOT NULL,
`course_id` varchar(255) NOT NULL,
@@ -2367,7 +2399,7 @@ CREATE TABLE `django_content_type` (
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=782 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=784 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `django_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
@@ -2378,7 +2410,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=580 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=584 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `django_openid_auth_association`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
@@ -3015,7 +3047,9 @@ CREATE TABLE `enterprise_enterprisecustomerreportingconfiguration` (
`data_type` varchar(20) NOT NULL,
`report_type` varchar(20) NOT NULL,
`pgp_encryption_key` longtext,
`uuid` char(32) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `enterprise_enterprisecus_uuid_9df3c307_uniq` (`uuid`),
KEY `enterprise_enterprisecustom_enterprise_customer_id_d5b55543` (`enterprise_customer_id`),
CONSTRAINT `enterprise_enterpris_enterprise_customer__d5b55543_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
@@ -3071,7 +3105,7 @@ CREATE TABLE `enterprise_enterprisefeaturerole` (
`description` longtext,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `enterprise_enterprisefeatureuserroleassignment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;

View File

@@ -19,7 +19,7 @@ CREATE TABLE `coursewarehistoryextended_studentmodulehistoryextended` (
`grade` double DEFAULT NULL,
`max_grade` double DEFAULT NULL,
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`student_module_id` int(11) NOT NULL,
`student_module_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `coursewarehistoryextended_s_version_d66288c3` (`version`),
KEY `coursewarehistoryextended_s_created_2cf0c3be` (`created`),
@@ -36,7 +36,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=580 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=584 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;