Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Recent grads grace period expiring 3/31/2023
credman committed Jan 17, 2023
1 parent 0552b59 commit def6dcd
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ex101/ex101.1.1/container_files/seed-data/sisData.sql
@@ -12589,7 +12589,7 @@ insert into sis_stu_programs (person_id, program_idx, acad_career_id, grad_year_
('800002994',1,'UGRD','2025','AS','MCB','AC'),
('800002998',1,'UGRD','2025','AS','PHY','AC');

/* make the original term ranges more relevant to the current year -- May 2022 should have 2022 (recent grads) and active classes 2023-2026 */
/* make the original term ranges more relevant to the current year -- march 2023 should have 2022 (recent grads) and active classes 2023-2026 */

update sis_stu_programs set grad_year_expected = convert(grad_year_expected, UNSIGNED INTEGER) + 1 where grad_year_expected is not null;
/*
2 changes: 1 addition & 1 deletion ex201/ex201.end/container_files/seed-data/bootstrap.gsh
@@ -15,7 +15,7 @@ import java.text.SimpleDateFormat;
Range<Integer> ACTIVE_CLASS_YEARS = 2023..2026
int RECENT_GRADUATE_YEAR = 2022
java.util.Calendar cal = Calendar.getInstance()
cal.set(2022, Calendar.DECEMBER, 31, 17, 0, 0)
cal.set(2023, Calendar.MARCH, 31, 17, 0, 0)
java.util.Date RECENT_GRAD_END_DATE = cal.time

/***** END Defaults that may need to be changed for each class *****/

0 comments on commit def6dcd

Please sign in to comment.