Catch breaking database changes in every build. Zero config, zero cost โ add schema diff checks to your Jenkins pipeline in 60 seconds.
๐ SchemaLens Schema Diff Report
| ๐ข Tables Added | 1 |
| ๐ด Tables Removed | 0 |
| ๐ก Tables Modified | 2 |
| โ ๏ธ Breaking Changes | 1 |
| ๐ Risk Score | 42/100 (Medium) |
ALTER TABLE users
ADD COLUMN email_verified_at TIMESTAMP;
The build description is updated automatically so anyone browsing the build history can spot risky schema changes at a glance โ no need to open the console log.
Team members can download the full markdown report from the Build Artifacts section. The report includes:
Breaking changes like dropped columns, removed indexes, or altered constraints get flagged before merge โ not after deploy.
The full schema diff appears directly in the Jenkins build console. No external dashboards required โ review drift where you already review logs.
Every build gets its description updated with risk score, table counts, and breaking change count. Spot risky builds in the build history instantly.
Set SKIP_NO_SQL_CHANGE: 'true' and the stage skips entirely when no .sql files were modified โ saving build time and agent resources.
No database connections, no CLI installation, no license key. Just point the stage at two SQL files.
Set FAIL_ON_BREAKING: 'true' and the build fails if any dangerous schema changes are detected.
Each diff gets a 0-100 risk score. High-risk migrations get extra scrutiny in code review.
The free tier includes breaking change detection, risk scoring, console reports, and artifact archiving. No credit card required.
Export your database schema to a SQL file as part of your workflow (e.g., pg_dump --schema-only or commit your schema file to the repo).
The stage compares the schema from your target branch against the schema in the current build. Any drift is surfaced instantly.
Enable POST_BUILD_COMMENT: 'true' and add a GITHUB_TOKEN or GITLAB_TOKEN credential. The stage posts a formatted summary to your PR or MR automatically.
| Feature | Free Tier | Pro (optional) |
|---|---|---|
| Schema diff summary | โ | โ |
| Breaking change detection | โ | โ |
| Risk score | โ | โ |
| Console output & build description | โ | โ |
| Archived artifacts | โ | โ |
| Smart skip (no SQL changes) | โ | โ |
| PR/MR comments (GitHub/GitLab) | โ | โ |
| Full migration SQL | First 5 lines | โ Complete script |
| Markdown export | โ | โ |
| JSON export | โ | โ |
| Rate limit | 15/min | 30/min |