From c2aa24d4d3de696a4eca5ee085c1bf2d653d30f5 Mon Sep 17 00:00:00 2001 From: githubmamatha Date: Sat, 27 Apr 2024 03:05:36 -0700 Subject: [PATCH] Grad2-2604 Made the required changes. --- .../1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql b/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql index 90ff72c..11df1b3 100644 --- a/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql +++ b/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql @@ -1,2 +1,2 @@ -UPDATE TRANSCRIPT_MESSAGE SET GRAD_PROJECTED_MESSAGE='Based on the information provided by the school, this student cannot satisfy the requirements for the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE = '2018-EN' AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; -UPDATE TRANSCRIPT_MESSAGE SET GRAD_MAIN_MESSAGE = 'Based on the information provided by the school, this student has not yet graduated in the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE = '2018-PF' AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; \ No newline at end of file +UPDATE TRANSCRIPT_MESSAGE SET GRAD_PROJECTED_MESSAGE='Based on the information provided by the school, this student cannot satisfy the requirements for the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; +UPDATE TRANSCRIPT_MESSAGE SET GRAD_MAIN_MESSAGE = 'Based on the information provided by the school, this student has not yet graduated in the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; \ No newline at end of file