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