Skip to main content
If you relied on atlas migrate lint for free migration-safety checks, that command moved behind Atlas Pro. This page lists free, Postgres-native alternatives and shows where supaschema fits.

What changed in Atlas

Starting with Atlas v0.38, the atlas migrate lint command is available only to Atlas Pro users, and the custom schema-policy linting rules are Pro-only as well. Atlas’s current pricing pages describe separate CLI seat, pipeline project, and target-database pricing. Confirm the current pricing page before quoting a number.
Last verified 2026-06-18 against the Atlas documentation. Pricing and feature gating are set by Atlas and can change; confirm the current terms on the Atlas site before quoting them.

Free alternatives at a glance

Each tool is Postgres-native. None requires an Atlas Pro seat to run its free checks.

Where supaschema fits

supaschema generates migrations from declarative SQL and proves them before apply. The migration-safety checks that overlap with atlas migrate lint are in the free core:
  • supaschema check flags replay-safety and lock hazards on a generated migration (missing IF EXISTS/IF NOT EXISTS guards, table-rewriting ALTERs, CREATE INDEX CONCURRENTLY inside a transaction, and more), each as a SUPA_* diagnostic you can decode with supaschema explain <CODE>.
  • supaschema diff surfaces a lock-impact advisory on each destructive operation that will actually run.
  • supaschema scan produces a composite safety score with free RLS-audit and least-privilege packs.
Destructive changes fail closed until you add the exact object key to hints.destructive after reviewing the rendered SQL, so a drop or a type change cannot land silently.

Licensing

supaschema is free and open source under MIT. Migration-safety checks, grant and RLS safety, and the standalone type-contract --enforce gate all ship in the same package without an entitlement check.

Choosing between them

  • You want Postgres migration-safety linting without a paid seat: use supaschema check, Squawk, or pgfence.
  • You generate migrations from declarative SQL and want the safety check in the same tool: use supaschema diff then supaschema check.
  • You already run the broader Atlas schema-as-code platform and want its hosted reporting: Atlas Pro is the paid path for that.

Supabase CLI comparison

How supaschema’s declarative diff compares to the Supabase CLI db diff workflow.

The check command

The replay-safety and lock-hazard diagnostics supaschema runs on every migration.

Sources

Last modified on July 24, 2026