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
19 lines
588 B
Plaintext
19 lines
588 B
Plaintext
=================================================
|
|
Liquibase: two changesets, applied on startup
|
|
=================================================
|
|
captured: 2026-09-15T07:07:15.896321149Z
|
|
|
|
|
|
-- databasechangelog --
|
|
ID | AUTHOR | FILENAME | ORDEREXECUTED | EXECTYPE
|
|
-----------------+--------+-------------+---------------+---------
|
|
1-create-account | ankurm | master.yaml | 1 | EXECUTED
|
|
2-seed-account | ankurm | master.yaml | 2 | EXECUTED
|
|
(2 rows)
|
|
|
|
-- account table --
|
|
ID | OWNER
|
|
---+------------------
|
|
1 | Katherine Johnson
|
|
(1 row)
|