Hi everybody, to migrate database during the start...
# server
j
Hi everybody, to migrate database during the startup, wich library do you advice me? I work uselly with Flyway. My application is write with Ktor, and my database is mySQL
m
Flyway or Liquibase are 2 very popular choices, and for good reason. If you already know Flyway, then stick with it. Don't have to use a tool written in Kotlin for everything.
👍 1
c
What problem are you having with flyway?
j
no problem with flyway, but each time i have to implement something i try to know is there a new library. So you confirm flyway is a good choise 🙂 Thank you
c
I’ve always used it and haven’t had any major issues with it 👍 .
m
We're using liquibase with Spring Boot/Kotlin and it works fine for our purposes. However, our database schema change requirements are relatively minor, since we put most of our data in a simple universal schema and push out the complex structure to a data warehouse