Skip to main content

sntl_migrate/diff/
mod.rs

1//! Schema-diff scaffolding: compute structural changes between two
2//! `sntl_schema::Schema` snapshots and emit a SQL skeleton for review.
3
4pub mod compare;
5pub mod emit;
6
7pub use compare::{Change, compare};
8pub use emit::emit;