Pragmatic database migrations with Quarkus and Flyway
I’ve recorded a video in which I’ll show how to perform database migrations in Quarkus applications using the Flyway Quarkus Extension.
Similar to the previous example, I’m using Flyway to perform database schema migrations, but in this example, Flyway is shipped with the application and executed at startup time. This is a more pragmatic, less flexible approach, ideal for non-Kubernetes environments, and setups where the application code only should have the control over the schema.
You can have a look at the code example on GitHub.
Further resources
Published on Java Code Geeks with permission by Sebastian Daschner, partner at our JCG program. See the original article here: Pragmatic database migrations with Quarkus and Flyway (Video) Opinions expressed by Java Code Geeks contributors are their own. |