-
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
Rename values in SiteConfiguration (2/3) attempt #2 #23214
Rename values in SiteConfiguration (2/3) attempt #2 #23214
Conversation
This reverts commit b85aa4b.
eb7d61c
to
a1e968d
Compare
This commit fixes an issue originally in 3541643 where an instance method on a model was missing in a migration. The problem was that Django is smarter than we thought, and is somehow able to construct an older version of the model before the commit, where there was no such method. The solution is just to pull the method out of the model. DENG-18
a1e968d
to
3400326
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Sorry I missed that first time around :/
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 may have caused e2e tests to fail on Stage. If you're a member of the edX org, please visit #e2e-troubleshooting on Slack to help diagnose the cause of these failures. Otherwise, it is the reviewer's responsibility. E2E tests have failed. https://gocd.tools.edx.org/go/tab/pipeline/history/deploy_to_stage |
EdX Release Notice: This PR has been deployed to the production environment. |
This time, I tested actually running migrations from manage.py lms migrate in devstack, not just copy+pasting the code into a python shell.
DENG-18