Schema Versioning in YugabyteDB Using Flyway
Introduction
As developers, many of us are aware of source versioning which helps us easily track and manage changes to the source code of our applications. Schema versioning is to databases what source versioning is to the applications. It helps track and manage the changes to the databases that our applications rely on.
In this blog post, we will talk about using Flyway – one of the most popular tools that simplify schema versioning for databases –
…