Reputation: 2524
What do you suggest as good ways to import database structure and commit database structure changes to the repository? Our current procedure is to export the structure into a text file then replace it the the existing text file in the repository. I find it tedious and time-consuming. Are there any utilities to do this?
Upvotes: 0
Views: 231
Reputation: 5145
Check Liquibase. It is a open source Database Change Management library.
Upvotes: 1
Reputation: 2680
I've taken to just doing all my structural updates as SQL scripts, so I don't have to export anything. That works out pretty good.
Upvotes: 1