Updating migrations

This commit is contained in:
edx-cache-uploader-bot
2018-01-25 16:47:45 -05:00
committed by Jesse Zoldak
parent 7a552f7446
commit 2b90998715
5 changed files with 14 additions and 12 deletions

View File

@@ -1 +1 @@
88834860015445be6b1c5d3affbd5afca7e1b59a
47a2eb9be1caf40fbe0262b0cca3ae0990fa1ddd

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -2094,7 +2094,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=394 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=396 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 */;
@@ -2644,11 +2644,13 @@ CREATE TABLE `enterprise_enterprisecustomerreportingconfiguration` (
`initialization_vector` longblob NOT NULL,
`password` longblob NOT NULL,
`enterprise_customer_id` char(32) NOT NULL,
`sftp_file_path` varchar(256),
`sftp_hostname` varchar(256),
`sftp_file_path` varchar(256) DEFAULT NULL,
`sftp_hostname` varchar(256) DEFAULT NULL,
`sftp_password` longblob,
`sftp_port` int(10) unsigned,
`sftp_username` varchar(256),
`sftp_port` int(10) unsigned DEFAULT NULL,
`sftp_username` varchar(256) DEFAULT NULL,
`decrypted_password` longblob,
`decrypted_sftp_password` longblob,
PRIMARY KEY (`id`),
UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`),
CONSTRAINT `D8a814303f0ffb6d38fe62b75eb3f96b` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`)
@@ -2826,7 +2828,7 @@ CREATE TABLE `entitlements_courseentitlement` (
`order_number` varchar(128) DEFAULT NULL,
`enrollment_course_run_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
`_policy_id` int(11),
`_policy_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `entitlements_courseentitlement_uuid_a690dd005d0695b_uniq` (`uuid`),
KEY `entitlements_courseentit_user_id_a8df050144d72f8_fk_auth_user_id` (`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=394 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=396 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;