Re: Postgres incremental database updates thru CI/CD

From: Adam Brusselback <adambrusselback(at)gmail(dot)com>
To: Puspendu Panda <puspendupanda(at)gmail(dot)com>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: Postgres incremental database updates thru CI/CD
Date: 2025-03-20 16:12:09
Message-ID: CAMjNa7czQyZspsrNwQsapAqUUDq7=xXJyGwMhukc0XSMmsRPHA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

There are no built in tools for this in Postgres.

There are other tools like the one mentioned that you can use instead. I've
used Liquibase for migrations for multiple companies now and it works well
enough.
If you have to support rollbacks for your deployments, that is a pretty
manual process for any serious migration (especially migrations requiring
data movement) in my experience. Also set up something that requires all
PRs to be able to apply update, rollback, and apply update again and still
be in the same state as if you only applied the update once.

For my current project, I have my liquibase integrated with my Spring Boot
backend, and CI/CD just deploys that artifact and on startup of the backend
the migrations are run. At my last company the liquibase portion was
standalone because we had a single database that had multiple products
interacting with it and we needed to be able to handle migrations
separately than any one specific app, so that was deployed directly through
CI/CD.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message David G. Johnston 2025-03-20 16:25:38 Re: After upgrading libpq, the same function(PQftype) call returns a different OID
Previous Message Laurenz Albe 2025-03-20 16:03:51 Re: Export operation efficiency in read replica