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
If a student is removed from a course all of the submission data for that course is lost. We should create a snapshot of prior day data before truncating the table.
Possible logic:
Before truncating StudentSubmission table, append data to archive table
Refresh StudentSubmission table
Remove any matching assignment (by submission id) from archive table that exists in current table
This logic would also help maintain year over year data as well. This is potentially something we should consider for other data sources: teachers, students, courses, coursework, etc.
If a student is removed from a course all of the submission data for that course is lost. We should create a snapshot of prior day data before truncating the table.
Possible logic:
This logic would also help maintain year over year data as well. This is potentially something we should consider for other data sources: teachers, students, courses, coursework, etc.