From 4a44de65e983ebe6d542aa3ea7febd7e5d72003a Mon Sep 17 00:00:00 2001 From: githubmamatha Date: Mon, 4 Dec 2023 14:04:35 -0800 Subject: [PATCH] Gard2-2341 Part-1 Flyway changes: Added history activity codes to the history_activity_code table. --- .../V1.0.60__DML-INSERT_DATA-ADD_HISTORY_ACTIVITY_CODE.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 api/src/main/resources/db/migration/1.0/V1.0.60__DML-INSERT_DATA-ADD_HISTORY_ACTIVITY_CODE.sql diff --git a/api/src/main/resources/db/migration/1.0/V1.0.60__DML-INSERT_DATA-ADD_HISTORY_ACTIVITY_CODE.sql b/api/src/main/resources/db/migration/1.0/V1.0.60__DML-INSERT_DATA-ADD_HISTORY_ACTIVITY_CODE.sql new file mode 100644 index 00000000..2a8053dc --- /dev/null +++ b/api/src/main/resources/db/migration/1.0/V1.0.60__DML-INSERT_DATA-ADD_HISTORY_ACTIVITY_CODE.sql @@ -0,0 +1,6 @@ +INSERT INTO HISTORY_ACTIVITY_CODE (HISTORY_ACTIVITY_CODE,LABEL,DESCRIPTION,DISPLAY_ORDER,EFFECTIVE_DATE,EXPIRY_DATE) +VALUES ('USEREDITTVRFLAG','User Modify Recalculate Projected Grad ','Recalculate Projected Grad flag updated by User',200,TIMESTAMP'2023-11-27 00:00:00.0',NULL); + + +INSERT INTO HISTORY_ACTIVITY_CODE (HISTORY_ACTIVITY_CODE,LABEL,DESCRIPTION,DISPLAY_ORDER,EFFECTIVE_DATE,EXPIRY_DATE) +VALUES ('USEREDITALGFLAG','User Modify Recalculate Grad Status ','Recalculate Grad Status flag updated by User',260,TIMESTAMP'2023-11-27 00:00:00.0',NULL);