user
12/05/2025, 12:28 PMbuildscript {
repositories {
...
}
dependencies {
...
classpath 'org.grails.plugins:database-migration:4.1.0'
}
}
...
sourceSets {
main {
resources {
srcDir 'grails-app/migrations'
}
}
}
dependencies {
...
implementation 'org.grails.plugins:database-migration:4.1.0'
implementation 'org.liquibase:liquibase-core:4.19.0'
}
The folder structure is created correctly (grails-app/migrations/changelog.groovy), but even if it’s not, there are no failures in the build process, however, it just silently doesn’t run. Could anyone tell me what’s missing?gaolei
12/05/2025, 12:31 PMuser
12/05/2025, 12:33 PMupdateOnStart = true) work as expected, or do I need to keep running them manually each time?Allison Martin
12/05/2025, 1:32 PMupdateOnStart=true. We put a step in our CI build pipeline that invokes the migrations to validate that they are working correctly.user
12/05/2025, 1:36 PMuser
12/05/2025, 2:06 PMdbm commands appear and work as expected. However, after upgrading to version 4.0.0, the dbm commands no longer show up.sbglasius
12/05/2025, 2:07 PMuser
12/05/2025, 2:38 PMsbglasius
12/05/2025, 2:42 PMuser
12/05/2025, 7:24 PM