From bba7ea5d372d47f23e56a0a2c02519777fece842 Mon Sep 17 00:00:00 2001 From: Bianca Severino Date: Mon, 17 May 2021 11:39:10 -0400 Subject: [PATCH] fix: remove expiry_date from SoftwareSecurePhotoVerification --- lms/djangoapps/verify_student/models.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lms/djangoapps/verify_student/models.py b/lms/djangoapps/verify_student/models.py index c66af8c0a9..5d50699e35 100644 --- a/lms/djangoapps/verify_student/models.py +++ b/lms/djangoapps/verify_student/models.py @@ -640,9 +640,6 @@ class SoftwareSecurePhotoVerification(PhotoVerification): IMAGE_LINK_DURATION = 5 * 60 * 60 * 24 # 5 days in seconds copy_id_photo_from = models.ForeignKey("self", null=True, blank=True, on_delete=models.CASCADE) - # DEPRECATED: the `expiry_date` field has been replaced by `expiration_date` - expiry_date = models.DateTimeField(null=True, blank=True, db_index=True) - # This field is used to maintain a check for learners to which email # to notify for expired verification is already sent. expiry_email_date = models.DateTimeField(null=True, blank=True, db_index=True)