-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use a "through" model for the ManyToManyField fields - phase 3 #28109
Use a "through" model for the ManyToManyField fields - phase 3 #28109
Conversation
f0b7cde
to
700cee1
Compare
700cee1
to
9313c1f
Compare
feecd67
to
58c36d4
Compare
9313c1f
to
2d3a062
Compare
…ction and CourseSectionSequence to ensure that cascading deletes will occur to delete the relation upon deletion of a foreign-keyed object. This commit is phase 3 of 4 in order to ensure a smooth deploy. The phases: 1) Add separate through models for user partition groups, add fields to point to the separate models, and start writing to those fields as well. (COMPLETE) 2) After all models have been re-generated, switch code over to use separate through model fields backed by the separate through models *and* stop writing to the original ManyToManyField field. (COMPLETE) 3) After phase 2 is deployed smoothly, remove the original ManyToManyField fields. (This PR!) 4) After phase 3 is deployed smoothly, rename the new fields to have the same name as the old fields, so new_user_partition_groups -> user_partition_groups. This PR is designed to be able to easily be rolled-back if anything goes wrong.
2d3a062
to
e655fc9
Compare
Your PR has finished running tests. There were no failures. |
EdX Release Notice: This PR has been deployed to the staging environment in preparation for a release to production. |
EdX Release Notice: This PR has been deployed to the production environment. |
EdX Release Notice: This PR has been deployed to the staging environment in preparation for a release to production. |
EdX Release Notice: This PR has been deployed to the production environment. |
Description
fix: Use a "through" model for the ManyToManyField fields in CourseSection and CourseSectionSequence to ensure that cascading deletes will occur to delete the relation upon deletion of a foreign-keyed object.
This commit is phase 3 of 4 in order to ensure a smooth deploy. The phases:
separate models, and start writing to those fields as well. (COMPLETE)
model fields backed by the separate through models and stop writing to the original
ManyToManyField field. (COMPLETE)
as the old fields, so
new_user_partition_groups
->user_partition_groups
.This PR is designed to be able to easily be rolled-back if anything goes wrong.
Supporting information
https://openedx.atlassian.net/browse/TNL-8314
Phase 1 PR: https://github.com/edx/edx-platform/pull/27941
Phase 2 PR: https://github.com/edx/edx-platform/pull/28032
Testing instructions
Deadline
None