From 91812907cf616a354e5af8a7532215531156b8a0 Mon Sep 17 00:00:00 2001 From: Kamal Mohammed Date: Thu, 28 Sep 2023 02:33:55 +0530 Subject: [PATCH 1/2] Create V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql --- .../V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 api/src/main/resources/db/migration/1.0/V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql diff --git a/api/src/main/resources/db/migration/1.0/V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql b/api/src/main/resources/db/migration/1.0/V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql new file mode 100644 index 00000000..6eff5a81 --- /dev/null +++ b/api/src/main/resources/db/migration/1.0/V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql @@ -0,0 +1,12 @@ +UPDATE REPORT_TYPE_CODE +SET DESCRIPTION='The final cumulative list of students who graduated, based on the last information submitted by the school in the reporting cycle.' +WHERE REPORT_TYPE_CODE='GRADREGARC'; + +UPDATE REPORT_TYPE_CODE +SET DESCRIPTION='The final list of grade 12 or AD students on a graduation program who were not projected to graduate based on missing course registrations or assessment registrations submitted by the school in the reporting cycle.' +WHERE REPORT_TYPE_CODE='NONGRADPRJARC'; + +UPDATE REPORT_TYPE_CODE +SET DESCRIPTION='The final cumulative list of students who had not-yet graduated, based on the last information submitted by the school in the reporting cycle.' +WHERE REPORT_TYPE_CODE='NONGRADREGARC'; + From 1685b20fc82116097112038a104227af1bb3533c Mon Sep 17 00:00:00 2001 From: Kamal Mohammed Date: Thu, 28 Sep 2023 02:36:58 +0530 Subject: [PATCH 2/2] Rename V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql to V1.0.97__DML-UPDATE_DATA-report_type_code.sql --- ...ype_code.sql => V1.0.97__DML-UPDATE_DATA-report_type_code.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename api/src/main/resources/db/migration/1.0/{V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql => V1.0.97__DML-UPDATE_DATA-report_type_code.sql} (100%) diff --git a/api/src/main/resources/db/migration/1.0/V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql b/api/src/main/resources/db/migration/1.0/V1.0.97__DML-UPDATE_DATA-report_type_code.sql similarity index 100% rename from api/src/main/resources/db/migration/1.0/V1.0.9.7__DML-UPDATE_DATA-report_type_code.sql rename to api/src/main/resources/db/migration/1.0/V1.0.97__DML-UPDATE_DATA-report_type_code.sql