How to update existing table JHipster sample app?
问题 I have created an entity called " event " using command yo jhipster:entity event while creating I forgot add one column let's say " event_title " so, I have added this(event_tile) column manually in liquibase changelog xml. Now how to update event table with newly added column? 回答1: You need to include the new changelog file in your src/main/resources/config/liquibase/master.xml file. <include file="classpath:config/liquibase/changelog/my_new_changelog.xml" relativeToChangelogFile="false"/>