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
9 lines
412 B
Bash
Executable File
9 lines
412 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Regenerate every transcript under docs/output/. This module's tests ARE the transcripts —
|
|
# each one asserts the same numbers it writes via the Transcript helper — so a single `mvn test`
|
|
# is the whole regeneration step; there is no separate demo script to drive.
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
mvn -q test
|
|
echo "Regenerated: $(ls docs/output | wc -l) files in docs/output/"
|