Skip to content

Commit

Permalink
C2C-223: Changed type of cause_of_death column to INT in liquibase. (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
enyachoke authored Mar 26, 2024
1 parent 1b61538 commit d5c318d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analytics/liquibase/analytics/changelogs/0001-init.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<column name="patient_age_at_visit" type="NUMERIC(24,0)"/>
<column name="patient_dead" type="BOOLEAN"/>
<column name="patient_death_date" type="TIMESTAMP"/>
<column name="patient_cause_of_death" type="BIGINT"/>
<column name="patient_cause_of_death" type="INT"/>
<column name="visit_uuid" type="VARCHAR"/>
<column name="visit_type_uuid" type="VARCHAR"/>
<column name="location_uuid" type="VARCHAR"/>
Expand Down Expand Up @@ -130,7 +130,7 @@
<column name="attributes" type="TEXT"/>
<column name="dead" type="BOOLEAN"/>
<column name="death_date" type="TIMESTAMP"/>
<column name="cause_of_death" type="BIGINT"/>
<column name="cause_of_death" type="INT"/>
<column name="creator" type="BIGINT"/>
<column name="date_created" type="TIMESTAMP"/>
<column name="person_voided" type="BOOLEAN"/>
Expand Down

0 comments on commit d5c318d

Please sign in to comment.