Skip to content

Commit b99c957

Browse files
authored
fix studentuniqueid type (#88)
* fix studentuniqueid type * bump version
1 parent bb98f7f commit b99c957

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
## Under the hood
44
## Fixes
55

6+
# edu_edfi_source v0.3.6
7+
## Fixes
8+
- Fix data type on base_ef3__student_special_education_program_associations.student_unique_id
9+
610
# edu_edfi_source v0.3.5
711
## Fixes
812
- Remove records deleted from Ed-Fi in `student_education_organization_associations` and `student_parent_associations`

dbt_project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
config-version: 2
22

33
name: 'edu_edfi_source'
4-
version: '0.3.5'
4+
version: '0.3.6'
55
require-dbt-version: [">=1.0.0", "<2.0.0"]
66

77
# This setting configures which "profile" dbt uses for this project.

models/staging/edfi_3/base/base_ef3__student_special_education_program_associations.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ renamed as (
1414
is_deleted,
1515

1616
v:id::string as record_guid,
17-
v:studentReference:studentUniqueId::int as student_unique_id,
17+
v:studentReference:studentUniqueId::string as student_unique_id,
1818
v:educationOrganizationReference:educationOrganizationId::int as ed_org_id,
1919
v:educationOrganizationReference:link:rel::string as ed_org_type,
2020
v:programReference:educationOrganizationId::int as program_ed_org_id,

0 commit comments

Comments
 (0)