Skip to content

Commit

Permalink
Grad release 1.14.0
Browse files Browse the repository at this point in the history
Grad release 1.14.0
  • Loading branch information
kamal-mohammed authored Feb 6, 2024
2 parents 2268e60 + 049fe8e commit 8671315
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ca.bc.gov.educ</groupId>
<artifactId>educ-grad-trax-api</artifactId>
<version>1.8.48</version>
<version>1.8.49</version>
<name>educ-grad-trax-api</name>
<description>Ministry of Education GRAD TRAX API</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,6 @@ public class GradCourse {
// career life connections
private String careerLifeConnections;

// indigenous-focused
private String indigenousFocused;
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@Data
@Immutable
@Entity
@Where(clause = "GRAD_REQT_YEAR in ('2004','2018','1950','1996','1986')")
@Where(clause = "GRAD_REQT_YEAR in ('2023','2018','2004','1996','1986','1950')")
@Table(name = "TAB_GRAD_CRSE")
public class GradCourseEntity {

Expand Down Expand Up @@ -69,4 +69,6 @@ public class GradCourseEntity {
private String fineArts;
@Column(name = "GRAD_CAREER_LIFE_CONNECTIONS")
private String careerLifeConnections;
@Column(name = "GRAD_INDIGENOUS_FOCUSED")
private String indigenousFocused;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- API_GRAD_TRAX.TMP_STUDENT Drop
DROP TABLE "TMP_STUDENT" CASCADE CONSTRAINTS;

0 comments on commit 8671315

Please sign in to comment.