Skip to content

Commit f2e17a3

Browse files
Aaron NeiderhiserAaron Neiderhiser
authored andcommitted
make work w/ 0.16.0
1 parent 52ed1bb commit f2e17a3

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ seeds:
3434
appointment:
3535
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','appointment.csv',headers=true) }}"
3636
eligibility:
37-
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','eligibility.csv',headers=true) }}"
37+
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.16.0','eligibility.csv',headers=true) }}"
3838
immunization:
3939
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','immunization.csv',headers=true) }}"
4040
lab_result:

packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
packages:
22
- package: tuva-health/the_tuva_project
3-
version: [">=0.15.0","<0.16.0"]
3+
version: [">=0.15.0","<0.17.0"]
44
- package: dbt-labs/dbt_utils
55
version: [ ">=0.9.2" ]

seeds/_seeds.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ seeds:
149149
{%- if target.type in ("postgres", "databricks") -%} timestamp
150150
{%- elif target.type == "fabric" -%} datetime2(6)
151151
{%- else -%} datetime {%- endif -%}
152+
hospice_flag: integer
153+
institutional_snp_flag: integer
154+
long_term_institutional_flag: integer
155+
enrollment_status: |
156+
{%- if target.type in ("bigquery", "databricks") -%} string {%- else -%} varchar(255) {%- endif -%}
152157
153158
- name: immunization
154159
config:

seeds/eligibility.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
person_id,member_id,subscriber_id,gender,race,birth_date,death_date,death_flag,enrollment_start_date,enrollment_end_date,payer,payer_type,plan,original_reason_entitlement_code,dual_status_code,medicare_status_code,group_id,group_name,name_suffix,first_name,middle_name,last_name,social_security_number,subscriber_relation,address,city,state,zip_code,phone,email,ethnicity,data_source,file_name,file_date,ingest_datetime
1+
person_id,member_id,subscriber_id,gender,race,birth_date,death_date,death_flag,enrollment_start_date,enrollment_end_date,payer,payer_type,plan,original_reason_entitlement_code,dual_status_code,medicare_status_code,group_id,group_name,name_suffix,first_name,middle_name,last_name,social_security_number,subscriber_relation,address,city,state,zip_code,phone,email,ethnicity,data_source,file_name,file_date,ingest_datetime,hospice_flag,institutional_snp_flag,long_term_institutional_flag,enrollment_status

0 commit comments

Comments
 (0)