Liquibase problem with JMIX v1.3.3

Hello,

I have upgrade to jmix v1.3.3 today and inteliJ IDEA 2022.2.2.
I encounter a problem with liquibase when I start the project it want to apply a patch on all FileRef parameter. So it drop collumnand recreate it.
But when you restart, it do exactly the same again and again

<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
                   xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
                   xmlns:pro="http://www.liquibase.org/xml/ns/pro"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
    <changeSet author="cruncheventmanager"
               id="1">
        <dropColumn columnName="DOCUMENT"
                    tableName="DOCUMENT"/>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="2">
        <addColumn tableName="DOCUMENT">
            <column name="DOCUMENT"
                    type="VARCHAR(255)"/>
        </addColumn>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="3">
        <dropColumn columnName="DOCUMENT"
                    tableName="PLAYBOOKS"/>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="4">
        <addColumn tableName="PLAYBOOKS">
            <column name="DOCUMENT"
                    type="VARCHAR(1024)"/>
        </addColumn>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="5">
        <dropColumn columnName="DOCUMENT"
                    tableName="WORKING_REPOSITORY"/>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="6">
        <addColumn tableName="WORKING_REPOSITORY">
            <column name="DOCUMENT"
                    type="CLOB"/>
        </addColumn>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="7">
        <dropColumn columnName="LOGO"
                    tableName="COMPANY"/>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="8">
        <addColumn tableName="COMPANY">
            <column name="LOGO"
                    type="VARCHAR(255)"/>
        </addColumn>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="9">
        <dropColumn columnName="LOGO"
                    tableName="EVENT"/>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="10">
        <addColumn tableName="EVENT">
            <column name="LOGO"
                    type="VARCHAR(255)"/>
        </addColumn>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="11">
        <dropColumn columnName="PHOTO"
                    tableName="USER_"/>
    </changeSet>
    <changeSet author="cruncheventmanager"
               id="12">
        <addColumn tableName="USER_">
            <column name="PHOTO"
                    type="VARCHAR(255)"/>
        </addColumn>
    </changeSet>
</databaseChangeLog>

Hello Alexandre,

It’s a know issue, fixed in Studio patch 1.3.7. The update will appear in JetBrains repository soon, hopefully in a few hours.

Thank you for your reply.
I will wait for the update

Best Regards

Alexandre