Question

I am used to Django South http://south.aeracode.org/, which allows schema and data migrations for Django projects. Does there exist a similar tool for Hibernate projects ?

Was it helpful?

Solution

Hibernate provides its own (limited) tools for schema migration. There are several caveats attached to it, including a warning "not to use it for production instances", although I have not personally experienced any issues using it against a prod system.

I wouldn't advise it for data migration, or large scale relational mapping changes, but for simple changes it is generally adequate (at the very least, it can be run to generate the required DDL statements which can later be run manually).

OTHER TIPS

LiquiBase does offer Hibernate support but I don't have practical experience with it. From the webpage:

The LiquiBase-Hibernate integration records the database changes required by your current Hibernate mapping to a change log file which you can then inspect and modify as needed before executing.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top