I\'ve a problem when I try to add a new field to an existing entity. I run this command yo jhipster:entity Libro and I choose [BETA] Yes, add more fields and relationships,
It's normal (at least in beta) because the update operation changed the Liquibase migration file 20161022122700_added_entity_Libro.xml
that created the entity, so Liquibase compares the checksum of the updated file with the checksum that was recorded in your database when migration was first run before update.
So you have these alternatives:
databasechangelog
table of your database(s)mvn liquibase:clearCheckSums
command against your database(s). Make sure your pom.xml
includes correct configuration for maven-liquibase-plugin to access your db.As this feature is beta, this issue is probably going to be addressed.