Merge pull request #19159 from edx/testeng/bokchoy_auto_cache_update_5b5d9cb0eb5453505fd8c9da80ee0607b26b2f6c

Bokchoy db cache update
This commit is contained in:
Stu Young
2018-10-25 14:27:35 -04:00
committed by GitHub
6 changed files with 19 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
5f06ea40003105ed26d042509c33f30d67aa5e6e
5b5d9cb0eb5453505fd8c9da80ee0607b26b2f6c

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -376,7 +376,7 @@ CREATE TABLE `auth_user` (
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `auth_user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
@@ -2122,7 +2122,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=485 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=490 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 */;
@@ -2598,6 +2598,7 @@ CREATE TABLE `enterprise_enterprisecustomer` (
`hide_course_original_price` tinyint(1) NOT NULL,
`slug` varchar(30) NOT NULL,
`country` varchar(2) DEFAULT NULL,
`enable_autocohorting` tinyint(1) NOT NULL,
PRIMARY KEY (`uuid`),
UNIQUE KEY `enterprise_enterprisecustomer_slug_80411f46_uniq` (`slug`),
KEY `enterprise_enterprisecustomer_9365d6e7` (`site_id`),
@@ -2688,6 +2689,7 @@ CREATE TABLE `enterprise_enterprisecustomerreportingconfiguration` (
`decrypted_sftp_password` longblob,
`data_type` varchar(20) NOT NULL,
`report_type` varchar(20) NOT NULL,
`pgp_encryption_key` longtext,
PRIMARY KEY (`id`),
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`)
@@ -2775,6 +2777,7 @@ CREATE TABLE `enterprise_historicalenterprisecustomer` (
`hide_course_original_price` tinyint(1) NOT NULL,
`slug` varchar(30) NOT NULL,
`country` varchar(2) DEFAULT NULL,
`enable_autocohorting` tinyint(1) NOT NULL,
PRIMARY KEY (`history_id`),
KEY `enterprise_hist_history_user_id_2938dabbace21ece_fk_auth_user_id` (`history_user_id`),
KEY `enterprise_historicalenterprisecustomer_ef7c876f` (`uuid`),
@@ -3565,7 +3568,7 @@ CREATE TABLE `oauth2_provider_application` (
KEY `oauth2_provider_application_9d667c2b` (`client_secret`),
KEY `oauth2_provider_applica_user_id_7fa13387c260b798_fk_auth_user_id` (`user_id`),
CONSTRAINT `oauth2_provider_application_user_id_79829054_fk` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `oauth2_provider_grant`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
@@ -5380,6 +5383,11 @@ CREATE TABLE `third_party_auth_samlproviderconfig` (
`send_welcome_email` tinyint(1) NOT NULL,
`slug` varchar(30) NOT NULL,
`enable_sso_id_verification` tinyint(1) NOT NULL,
`default_email` varchar(255) NOT NULL,
`default_first_name` varchar(255) NOT NULL,
`default_full_name` varchar(255) NOT NULL,
`default_last_name` varchar(255) NOT NULL,
`default_username` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `third_party_auth__changed_by_id_508190ecd0b0e845_fk_auth_user_id` (`changed_by_id`),
KEY `third_party_auth_samlproviderconfig_9365d6e7` (`site_id`),
@@ -5839,6 +5847,7 @@ CREATE TABLE `video_config_videothumbnailsetting` (
`all_course_videos` tinyint(1) NOT NULL,
`course_ids` longtext NOT NULL,
`changed_by_id` int(11) DEFAULT NULL,
`offset` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `video_config_videoth_changed_by_id_9385a0b2_fk_auth_user` (`changed_by_id`),
CONSTRAINT `video_config_videoth_changed_by_id_9385a0b2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`)

View File

@@ -35,7 +35,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=485 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=490 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;