How can I "sync" my db server (MySQL) with my hibernate tables without the hibernate.hbm2ddl.auto = update property? Before using MySQL databases I was using H2 and I could use Liquibase to "merge" two different database so I only had to host an empty database with the tables somewhere and then check for potential update but how can I do it with MySQL as it is a server? Is there a better way to do it?
Thanks