Dear all,
in our team we start using liquibase …and as you can imagine we are struggling with basic issue …
our change log is xml … demanding to include sql file …
<include file="${url}/02_10_Labels.sql" relativeToChangelogFile="true"/>
in the 02_10_Labels.sql file
–liquibase formatted sql
–changeset :02_10_labels|versions|499c378b-5d51-4c46-bc6f-9b06e1f24419
insert into xxxxxvalues (32132132,‘XXXX’,NULL,‘xxxx’);
How can I define the label, tag and context for that changeset?
I’m using liquibase in Intellij via gradle plugin
here the versions
dependencies {
classpath “org.liquibase:liquibase-core:3.4.1”
classpath “org.liquibase:liquibase-gradle-plugin:1.1.1”
classpath “com.oracle:ojdbc6:11.2.0.4”
}