diff --git a/bahmnicore-omod/src/main/resources/liquibase.xml b/bahmnicore-omod/src/main/resources/liquibase.xml index 9afe7fcdd..2207cf8f4 100644 --- a/bahmnicore-omod/src/main/resources/liquibase.xml +++ b/bahmnicore-omod/src/main/resources/liquibase.xml @@ -4571,4 +4571,19 @@ + + + + SELECT COUNT(*) FROM program_attribute_type where name = 'Stage' AND datatype = + 'org.bahmni.module.bahmnicore.customdatatype.datatype.CodedConceptDatatype'; + + + Update datatype of patient stage program attribute type + + UPDATE program_attribute_type + SET datatype = 'org.openmrs.customdatatype.datatype.ConceptDatatype' + WHERE name = 'Stage'; + + +