Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GRAD2-2344 - Archive Process FLYWAY Change: New Batch Type Codes #435

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
UPDATE BATCH_JOB_TYPE_CODE
SET DISPLAY_ORDER=90,
WHERE BATCH_JOB_TYPE_CODE='CERT_REGEN';

INSERT INTO BATCH_JOB_TYPE_CODE (BATCH_JOB_TYPE_CODE,LABEL,DESCRIPTION,DISPLAY_ORDER,EFFECTIVE_DATE)
VALUES ('ARC_STUDENTS','Archive Student batch process','A year-end process that will set student status of CUR (current) to ARC (archived)',100,TIMESTAMP'2023-09-01 00:00:00.0');

INSERT INTO BATCH_JOB_TYPE_CODE (BATCH_JOB_TYPE_CODE,LABEL,DESCRIPTION,DISPLAY_ORDER,EFFECTIVE_DATE)
VALUES ('ARC_SCH_REPORTS','Archive School Reports process','A year-end process that archives the graduation and projected graduation summary reports',110,TIMESTAMP'2023-09-01 00:00:00.0');
Loading