<?xml version="1.0" encoding="UTF-8"?>
<changelog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://www.liquigraph.org/schema/1.0/liquigraph.xsd">
    <changeset id="PUB-908_replace_modifiedat_with_lastmodifiedat:1" author="jbertran" run-always="true">
        <query>
            <![CDATA[
                MATCH (n:PublishingComposition)
                WHERE n.modifiedAt IS NOT NULL AND n.lastModifiedAt IS NULL
                SET n.lastModifiedAt = n.modifiedAt
                REMOVE n.modifiedAt
            ]]>
        </query>
    </changeset>
    <changeset id="PUB-908_replace_modifiedat_with_lastmodifiedat:2" author="jbertran" run-always="true">
        <query>
            <![CDATA[
                MATCH (n:PublishingComposition)
                WHERE n.modifiedAt IS NOT NULL AND n.lastModifiedAt IS NOT NULL
                REMOVE n.modifiedAt
            ]]>
        </query>
    </changeset>
</changelog>
