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

Codes description updated in different PR #303

Open
wants to merge 2 commits into
base: grad-release
Choose a base branch
from
Open
Show file tree
Hide file tree
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 @@
ALTER TABLE FINE_ARTS_APPLIED_SKILLS_CODE MODIFY DESCRIPTION VARCHAR2(500);
UPDATE FINE_ARTS_APPLIED_SKILLS_CODE
SET DESCRIPTION = CASE
WHEN FINE_ARTS_APPLIED_SKILLS_CODE = 'A' THEN 'Legacy value used to indicate that a Grade 11 BAA course met the 2-credit Applied Skills requirement for the 1995 program. If submitted by a school for a BAA/FNA course session > 2011-06-30, the rules for "B" apply.'
WHEN FINE_ARTS_APPLIED_SKILLS_CODE = 'F' THEN 'Legacy value used to indicate that a Grade 11 BAA course met the 2-credit Fine Arts requirement for the 1995 program. If submitted by a school for a Grade 11 BAA/FNA course session > 2011-06-30, the rules for "B" apply.'
WHEN FINE_ARTS_APPLIED_SKILLS_CODE = 'B' THEN 'Where course session > 2011-06-30, indicates that a Grade 11 BAA/FNA course can be used towards Fine Arts and/or Applied Skills (2004 program) or ADST (2018 and 2023 programs) requirement. Where course session =< 2011-06-30, indicates that a Grade 11 BAA course met the both the 2-credit Applied Skills and 2-credit Fine Arts requirements for the 1995 program.'
END,
EXPIRY_DATE = NULL
WHERE 1 = 1;
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
UPDATE FINE_ARTS_APPLIED_SKILLS_CODE
SET LABEL='Both Fine Arts and Applied Skills', UPDATE_USER='API_COURSE' , UPDATE_DATE= TIMESTAMP'2024-06-26 00:00:00.0'
WHERE FINE_ARTS_APPLIED_SKILLS_CODE='B';
Loading