Using customChange in Node js

I’ve done this in Java but I want to migrate for Node.js . Is it possible to use the customChang tag in a Node js application?
I’ve tried this but I get a ClassNotFoundException.

<?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">
  <changeSet author="fabio" id="791a1ee0-fba2-4904-b859-8274c78e76da">
    <customChange class="custom_changes/MultipleAdd.java"
                  suffix="Table"
                  columnName="NEW_COLUMN_SUFFIX" columnType="int" notNull="true" defaultValue="10"/>
  </changeSet>
</databaseChangeLog>

This is my project structure

Try to do it like this example:

You have to implement CustomTaskChange or CustomSqlChange in your MultipleAdd class.

I know I haveit implemented it in my Java classe. But how do I call the class from the XML file?

hello,

you have first to create java class ExampleCustomTaskChange

Then, the XML file should be like that :

Regards,
Ahmed.