<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="01-user-service-update-directory-name-to-null-for-ad-hock-groups" author="ivoshurbanovski">
        <update tableName="acm_group">
            <column name="cm_directory_name" value="NULL"/>
            <where>cm_group_type='ADHOC_GROUP'</where>
        </update>
    </changeSet>
    <changeSet id="02-set-default-user-language" author="bojan.milenkoski">
        <update tableName="acm_user">
            <column name="cm_lang" value="en"/>
            <where>cm_lang LIKE '"%"'</where>
        </update>
    </changeSet>
</databaseChangeLog>