Skip to content

Commit

Permalink
BED-4 Add foreignKeyTableName to liquibase constraints (openmrs#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
k4pran authored Jan 14, 2024
1 parent a64390c commit 358175a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions api/src/main/resources/liquibase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<changeSet author="arathy" id="08102013_3">
<preConditions onFail="MARK_RAN">
<not>
<foreignKeyConstraintExists foreignKeyName="bed_id_fk"/>
<foreignKeyConstraintExists foreignKeyTableName="bed_patient_assignment_map" foreignKeyName="bed_id_fk"/>
</not>
</preConditions>
<comment>
Expand All @@ -65,7 +65,7 @@
<changeSet author="arathy" id="08102013_4">
<preConditions onFail="MARK_RAN">
<not>
<foreignKeyConstraintExists foreignKeyName="bed_patient_assignment_map_patient_fk"/>
<foreignKeyConstraintExists foreignKeyTableName="bed_patient_assignment_map" foreignKeyName="bed_patient_assignment_map_patient_fk"/>
</not>
</preConditions>
<comment>
Expand Down Expand Up @@ -105,7 +105,7 @@
<changeSet author="arathy" id="08102013_6">
<preConditions onFail="MARK_RAN">
<not>
<foreignKeyConstraintExists foreignKeyName="bed_location_map_location_fk"/>
<foreignKeyConstraintExists foreignKeyTableName="bed_location_map" foreignKeyName="bed_location_map_location_fk"/>
</not>
</preConditions>
<comment>
Expand Down Expand Up @@ -172,7 +172,7 @@
<changeSet author="Arathy,Banka" id="bed_management_module_18112013_3">
<preConditions onFail="MARK_RAN">
<not>
<foreignKeyConstraintExists foreignKeyName="bed_bed_type_fk"/>
<foreignKeyConstraintExists foreignKeyTableName="bed" foreignKeyName="bed_bed_type_fk"/>
</not>
</preConditions>
<comment>
Expand Down Expand Up @@ -556,7 +556,7 @@
<changeSet author="Mahitha" id="201807041155">
<preConditions onFail="MARK_RAN">
<not>
<foreignKeyConstraintExists foreignKeyName="bed_location_map_bed_id_fk"/>
<foreignKeyConstraintExists foreignKeyTableName="bed_location_map" foreignKeyName="bed_location_map_bed_id_fk"/>
</not>
</preConditions>
<comment>
Expand Down

0 comments on commit 358175a

Please sign in to comment.