Updating migrations

This commit is contained in:
edx-cache-uploader-bot
2019-01-02 11:46:32 -05:00
committed by Michael Youngstrom
parent a6ff120f8f
commit 2167e82bf2
6 changed files with 28 additions and 11 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
35c66b21cbd42f69d9b4bf3c655e967c4ec7aebe
c5723d94dfc978ce45a036693d6264f52b4e71be

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -315,6 +315,7 @@ 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`),
@@ -356,7 +357,7 @@ CREATE TABLE `auth_permission` (
PRIMARY KEY (`id`),
UNIQUE KEY `content_type_id` (`content_type_id`,`codename`),
CONSTRAINT `auth__content_type_id_508cf46651277a81_fk_django_content_type_id` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1131 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=1134 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 */;
@@ -2170,7 +2171,7 @@ CREATE TABLE `django_content_type` (
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_45f3b1d93ec8c61c_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=376 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=377 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 */;
@@ -2181,7 +2182,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=507 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=511 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 */;
@@ -2866,7 +2867,7 @@ CREATE TABLE `enterprise_historicalenterprisecustomer` (
`slug` varchar(30) NOT NULL,
`country` varchar(2) DEFAULT NULL,
`enable_autocohorting` tinyint(1) NOT NULL,
`customer_type_id` int(11),
`customer_type_id` int(11) DEFAULT NULL,
`enable_portal_code_management_screen` tinyint(1) NOT NULL,
PRIMARY KEY (`history_id`),
KEY `enterprise_hist_history_user_id_2938dabbace21ece_fk_auth_user_id` (`history_user_id`),
@@ -3944,6 +3945,7 @@ CREATE TABLE `proctoring_proctoredexam` (
`is_practice_exam` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`hide_after_due` tinyint(1) NOT NULL,
`backend` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `proctoring_proctoredexam_course_id_7d8ab189323890c0_uniq` (`course_id`,`content_id`),
KEY `proctoring_proctoredexam_ea134da7` (`course_id`),
@@ -5040,6 +5042,21 @@ CREATE TABLE `student_pendingnamechange` (
CONSTRAINT `student_pendingnamechange_user_id_e2cd8b70_fk` 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 `student_pendingsecondaryemailchange`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `student_pendingsecondaryemailchange` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`new_secondary_email` varchar(255) NOT NULL,
`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`),
KEY `student_pendingsecondaryemailchange_new_secondary_email_5e79db59` (`new_secondary_email`),
CONSTRAINT `student_pendingsecon_user_id_deacc54f_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 `student_registrationcookieconfiguration`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;

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=507 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=511 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;