rajeemcariazo
rajeemcariazo

Reputation: 2524

Check-in SQL database structure to the repository

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

Answers (2)

Sujee
Sujee

Reputation: 5145

Check Liquibase. It is a open source Database Change Management library.

Upvotes: 1

joelt
joelt

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

Related Questions