Liquibase error

Hi,

My team are using Liquibase to handle our postGres migrations. All has been working great.

Today I tried to add a sql change script to rename some columns but I’m getting:

Liquibase: Could not find databaseChangeLog node

I’ve tried removing the docker images for postgres and the dbmigration, and removing volumes but error persists.

Any ideas?

This is the changelog.xml which hasn’t changed and works on another devs machine:

<?xml version="1.0" encoding="UTF-8"?>  
<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-4.1.xsd">  
    <includeAll path="liquibase/changelog/sql"/>
</databaseChangeLog>

Do you need a trailing “/”?

Here is how we have ours set up:

<?xml version="1.0" encoding="UTF-8"?>

<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.8.xsd">
    <includeAll path="schema/"/>
</databaseChangeLog>