You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This application is still relatively new, but at some point, we will need to be able to remove specific Exam or Report instances. Deleted Exam instances will result in related Submissions being deleted (CASCADE), but Reports being deleted will simply set the FK to null. (Exams and associated Reports should probably be removed together to ensure integrity.)
In a pinch, we could issue custom SQL to delete a Report and/or an Exam, but it would be better if these changes were captured somehow in a log and fully covered by unit tests. This kind of change management could be integrated with work on #54.
The text was updated successfully, but these errors were encountered:
This application is still relatively new, but at some point, we will need to be able to remove specific
Exam
orReport
instances. DeletedExam
instances will result in relatedSubmission
s being deleted (CASCADE
), butReport
s being deleted will simply set the FK tonull
. (Exam
s and associatedReport
s should probably be removed together to ensure integrity.)In a pinch, we could issue custom SQL to delete a
Report
and/or anExam
, but it would be better if these changes were captured somehow in a log and fully covered by unit tests. This kind of change management could be integrated with work on #54.The text was updated successfully, but these errors were encountered: