<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
            http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">

    <changeSet id="21-update-person-type-lookup-table" author="dmiller">
        <update tableName="acm_person">
            <column name="cm_person_type_id"/>
            <where>cm_person_type_id is not null</where>
        </update>
        <update tableName="acm_person_assoc">
            <column name="cm_person_assoc_person_type" value="Complaintant"/>
            <where>cm_person_assoc_person_type = 'Complainant'</where>
        </update>
    </changeSet>
</databaseChangeLog>

