-
Notifications
You must be signed in to change notification settings - Fork 1
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-2749 Update descriptions and expiry dates. #299
Open
githubmamatha
wants to merge
2
commits into
grad-release
Choose a base branch
from
Grad2-2749
base: grad-release
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
api/src/main/resources/db/migration/1.0/V1.0.29__DML-UPDATE_TABLE-Exam_Special_Case_Code.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Aegrotat', DESCRIPTION='Aegrotat Standing. The student has been granted exemption from writing a Provincial Exam due to unpredictable circumstances that render a student unable to write an exam even at a future session.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2020-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='A'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Bogus', DESCRIPTION='When the school reported the same school percentage in more than one session, but the student did not retake the course.For example, if a school reported 65% for both January and April for a given examinable course, TRAX would recognize a duplication, considered the second superfluous and mark that record’s classroom mark with a B.The B course would be ignored for mixing and matching.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2020-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='B'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Challenge', DESCRIPTION='Used for students wishing to obtain a scholarship score by challenging a provincially examinable course. After the 1997-98 implementation of the new Course Challenge Policy, this practice was phased out.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2001-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='C'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Deferred', DESCRIPTION='Indicates that the student was granted a deferral for writing the exam because of illness, accident or personal difficulty.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2020-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='D'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Special Case F', DESCRIPTION='Unknown. Not applied after 1986.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('1986-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='F'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='None', DESCRIPTION='Indicates no special case for the provincial exam.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2020-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='N'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Disqualified', DESCRIPTION='Student is believed to have breached one or more rules during a provincial exam and any result was disqualified.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2020-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='Q'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Rewrite', DESCRIPTION='Student re-wrote the exam but did not re-take the course.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2020-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='R'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Verified', DESCRIPTION='Student re-took the course and received the exact same school percent as last time. Initially flagged as "B", but changed to V when the student’s classroom mark was confirmed.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('2020-06-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='V'; | ||
|
||
UPDATE EXAM_SPECIAL_CASE_CODE | ||
SET LABEL='Special Case W', DESCRIPTION='Unknown. Not applied after 1986.', | ||
EFFECTIVE_DATE=TO_DATE('1984-07-01', 'YYYY-MM-DD'), EXPIRY_DATE=TO_DATE('1986-08-30', 'YYYY-MM-DD'), UPDATE_USER='API_COURSE' , UPDATE_DATE=SYSTIMESTAMP | ||
WHERE EXAM_SPECIAL_CASE_CODE='W'; | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add spaces after the periods in the description