Generate a database update scripts with Hibernate/Spring
问题 I have a project where we use to rely on hibernate to update database with changes (hibernate.hbm2ddl.auto=update)... even on prod... I am migrating that to use liquibase instead. My only concern is that not everyone is a sql guru in my team, so I am looking for a simple way to generate the sql script that hibernate would have done if it was updating the database. We are all using Intellij IDEA but couldn't find this feature. Do you know any tool capable of doing that? Thank you 回答1: To