2

I have for a very long time wondered about, what do people do when using git and databases? If I locally add new columns to the db, how in the world would you easily make the change in production?
Do I really have to manually do it or take the time to make scripts for it?

Comments
  • 0
    DB migrations... Tied to your code then
  • 1
    Automate! Use Liquibase or similar stuff.
    Don’t even think of writing instructions for humans. They will mess it up.
Add Comment