Companion code for the Flyway vs Liquibase article: checksum validation, out-of-order and repeatable migrations, baselining an existing schema, Flyway Community's undo/diff/deploy stubs, concurrent-startup locking for both tools, Liquibase changeset identity and rollback (auto-generated vs explicit), a verified Liquibase 5.0.3 filename-caching defect, the new OSS license service, the FSL license change, and running both tools against one database. Co-Authored-By: Claude Sonnet 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01Q6XdRjtsp4862EM44T7i9a
23 lines
910 B
Java
23 lines
910 B
Java
package com.ankurm.dbmigrations;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* Runnable demo used only for the {@code /diag/migrations} endpoint (see
|
|
* {@link com.ankurm.dbmigrations.web.MigrationDiagnosticsController} and
|
|
* docs/15-production-checklist.md). Every other scenario in this module runs as a JUnit test
|
|
* against {@code ApplicationContextRunner} so it starts in milliseconds and needs no server —
|
|
* see docs/01-the-problem-and-mental-model.md for why that split was made.
|
|
*
|
|
* <p>Delete the diagnostics endpoint before shipping a real service; it prints raw migration
|
|
* bookkeeping tables with no authorization check.
|
|
*/
|
|
@SpringBootApplication
|
|
public class DbMigrationsApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(DbMigrationsApplication.class, args);
|
|
}
|
|
}
|