I want to save change database scripts in my version control for log and history Or maybe use Flyway in feature.
I use hibernate ddl-auto update mode in develop time to change and update database schema.
How can get queries that hibernate apply to database when run app in ddl-auto=update mode?
Does hibernate give me API or log file or alternative solution?
Any body have suggest?