-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: drop column ProctoredExamSoftwareSecureReview.video_url (#990)
Also introduce the encrypted_video_url column on the ProctoredExamSoftwareSecureReviewHistory table so we can have proper history records Co-authored-by: Simon Chen <[email protected]>
- Loading branch information
Showing
5 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Generated by Django 2.2.24 on 2021-10-29 13:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('edx_proctoring', '0020_auto_20211028_1915'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='proctoredexamsoftwaresecurereview', | ||
name='video_url', | ||
), | ||
migrations.RemoveField( | ||
model_name='proctoredexamsoftwaresecurereviewhistory', | ||
name='video_url', | ||
), | ||
migrations.AddField( | ||
model_name='proctoredexamsoftwaresecurereviewhistory', | ||
name='encrypted_video_url', | ||
field=models.BinaryField(null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters