Activity overview
Latest activity by kenshine
I was just informed that my organization got it from https://mvnrepository.com/artifact/org.flywaydb/flyway-core Is that the OSS version? Thanks. / comments
I was just informed that my organization got it from https://mvnrepository.com/artifact/org.flywaydb/flyway-coreIs that the OSS version? Thanks.
Did the pom answer your question of " Is it the redgate one?" Is it Redgate Community, as I think? I now see there is an Open-Source Software (OSS) version. From the pom. I can't tell which one it is. Can you? / comments
Did the pom answer your question of " Is it the redgate one?" Is it Redgate Community, as I think? I now see there is an Open-Source Software (OSS) version. From the pom. I can't tell which one ...
I am getting it as part of my team's build process. I am not sure how it entered the pipe line. I can attach the pom, if that helps. / comments
I am getting it as part of my team's build process. I am not sure how it entered the pipe line. I can attach the pom, if that helps.
Also, is skipExecutingMigrations available on Community Edition? / comments
Also, is skipExecutingMigrations available on Community Edition?
The artifact is stored in my teams artifactory. Ot Spring deployable is built with Gradle: api group: 'org.flywaydb', name: 'flyway-core', version: '10.9.1' Let me explain what I needed to do. I have some deployment thats have migrations applied, lets say up to 107. There are 110 migrations. For deployment at 107, I want to apply 108, 109 and 110. For other deployments are at the last release, migration 100. For that deployment, I do not want apply 101 thru 110. Instead, I want to skip those and apply a single file that contains all the SQL that was in migrations 101 thru 110. This is similar to your baseline feature, but instead of deploying to a new env and having all SQL in 1 file, I want 1 file with all the SQL from last official release. Thanks much for your help. / comments
The artifact is stored in my teams artifactory. Ot Spring deployable is built with Gradle: api group: 'org.flywaydb', name: 'flyway-core', version: '10.9.1'Let me explain what I needed to do. I h...
is skipExecutingMigrations available on Community Edition
Is skipExecutingMigrations available on Community Edition?I have read docs and watched Redgates YouTube videos on these feature but do not see comments regarding support for this feature on the var...