Skip to content

Commit

Permalink
Updated column width for ExamSpecialCaseCode and also updated DTO col…
Browse files Browse the repository at this point in the history
…umn width to match FineArtsAppliedSkillsCode Entity. (#307)

Co-authored-by: chris.ditcher <Chris.Ditcher@QP.GOV.BC.CA>
  • Loading branch information
cditcher and chris.ditcher authored Jun 28, 2024
1 parent 43c8b59 commit d8c9208
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ExamSpecialCaseCode extends BaseEntity {
@Column(name = "LABEL", nullable = false, length = 50)
private String label;

@Column(name = "DESCRIPTION", nullable = false, length = 355)
@Column(name = "DESCRIPTION", nullable = false, length = 500)
private String description;

@Column(name = "DISPLAY_ORDER", nullable = false, precision = 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class FineArtsAppliedSkillsCode extends BaseEntity {
@Column(name = "LABEL", nullable = false, length = 50)
private String label;

@Column(name = "DESCRIPTION", nullable = false, length = 355)
@Column(name = "DESCRIPTION", nullable = false, length = 500)
private String description;

@Column(name = "DISPLAY_ORDER", nullable = false, precision = 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class ExamSpecialCaseCodeEntity extends BaseEntity {
@Column(name = "LABEL", nullable = false, length = 50)
private String label;

@Column(name = "DESCRIPTION", nullable = false, length = 355)
@Column(name = "DESCRIPTION", nullable = false, length = 500)
private String description;

@Column(name = "DISPLAY_ORDER", nullable = false, precision = 0)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ALTER TABLE EXAM_SPECIAL_CASE_CODE MODIFY DESCRIPTION VARCHAR2(500);
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
Expand Down

0 comments on commit d8c9208

Please sign in to comment.