I have a springboot project with liquibase installed and some changeSet. In developpement to be simpler I used loadData to load data from my csv files. Now I'm deploying it in production but I would like to create the table without the data.
<changeSet id="00000000000001" author="jhipster">
<createTable tableName="jhi_user">
<column name="id" type="bigint" autoIncrement="${autoIncrement}">
<constraints primaryKey="true" nullable="false"/>
</column>
[...]
<loadData encoding="UTF-8"
file="config/liquibase/users.csv"
separator=";"
tableName="jhi_user">
<column name="activated" type="boolean"/>
<column name="created_date" type="timestamp"/>
</loadData>
</changeSet>
Is it possible to load data depending on the context ?