Jhipster creates a initial project structure for us, but normally there changes in an active application, like a new entity, a new relationship or any field modification. All changes modify the initial database.
What is the recommended way to modify a existent database? Because in my tests using Postgresql and not H2 I need to drop the existent database and create it again for changes to take effect because JHipster modifications doesn't create a new Liquibase changelog, it replaces the existing one with the changes, causing the migration to fail on the next start of the appplication due to differences in the db schema and the changelogs.