Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/test/db_cache/bok_choy_data_default.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion common/test/db_cache/bok_choy_migrations.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f43f004ad1c98f551fe1dc5f9b222a5be2519978
36645741cd823bdf9143f4dcc991bc796051232c
2 changes: 1 addition & 1 deletion common/test/db_cache/bok_choy_migrations_data_default.sql

Large diffs are not rendered by default.

Large diffs are not rendered by default.

33 changes: 30 additions & 3 deletions common/test/db_cache/bok_choy_schema_default.sql
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,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=2411 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=2414 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 */;
Expand Down Expand Up @@ -1520,6 +1520,30 @@ CREATE TABLE `course_creators_coursecreator` (
CONSTRAINT `course_creators_coursecreator_user_id_e4da548d_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 */;
DROP TABLE IF EXISTS `course_date_signals_selfpacedrelativedatesconfig`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `course_date_signals_selfpacedrelativedatesconfig` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`change_date` datetime(6) NOT NULL,
`enabled` tinyint(1) DEFAULT NULL,
`org` varchar(255) DEFAULT NULL,
`org_course` varchar(255) DEFAULT NULL,
`changed_by_id` int(11) DEFAULT NULL,
`course_id` varchar(255) DEFAULT NULL,
`site_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `course_date_site_id_a44836_idx` (`site_id`,`org`,`course_id`),
KEY `course_date_site_id_c0164a_idx` (`site_id`,`org`,`org_course`,`course_id`),
KEY `course_date_signals__changed_by_id_5f8228f2_fk_auth_user` (`changed_by_id`),
KEY `course_date_signals__course_id_361d8ca8_fk_course_ov` (`course_id`),
KEY `course_date_signals_selfpacedrelativedatesconfig_org_9c13e820` (`org`),
KEY `course_date_signals_selfpac_org_course_b7041c4f` (`org_course`),
CONSTRAINT `course_date_signals__changed_by_id_5f8228f2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `course_date_signals__course_id_361d8ca8_fk_course_ov` FOREIGN KEY (`course_id`) REFERENCES `course_overviews_courseoverview` (`id`),
CONSTRAINT `course_date_signals__site_id_29483878_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `course_duration_limits_coursedurationlimitconfig`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
Expand Down Expand Up @@ -2542,7 +2566,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=801 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=802 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 */;
Expand All @@ -2553,7 +2577,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=659 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=662 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 */;
Expand Down Expand Up @@ -4470,6 +4494,7 @@ CREATE TABLE `oauth_dispatch_applicationaccess` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`scopes` varchar(825) NOT NULL,
`application_id` bigint(20) NOT NULL,
`filters` varchar(825) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `application_id` (`application_id`),
CONSTRAINT `oauth_dispatch_appli_application_id_dcddee6e_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`)
Expand Down Expand Up @@ -5501,6 +5526,7 @@ CREATE TABLE `site_configuration_siteconfiguration` (
`values` longtext NOT NULL,
`site_id` int(11) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`site_values` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `site_id` (`site_id`),
CONSTRAINT `site_configuration_s_site_id_84302d1f_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`)
Expand All @@ -5516,6 +5542,7 @@ CREATE TABLE `site_configuration_siteconfigurationhistory` (
`values` longtext NOT NULL,
`site_id` int(11) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`site_values` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `site_configuration_s_site_id_272f5c1a_fk_django_si` (`site_id`),
CONSTRAINT `site_configuration_s_site_id_272f5c1a_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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=659 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=662 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

Expand Down