pgevolve 0.4.3

Postgres declarative schema management CLI — diff source SQL against a live database and generate reviewable migrations.
Documentation
//! Command implementations.
//!
//! Each module is one subcommand from [`crate::cli::Command`]. Most
//! commands return an exit code (0 / 1 / 2 / 3 / 4 per spec §13) or an
//! error which the dispatcher prints and maps to exit code 1.

pub mod apply;
pub mod bootstrap;
pub mod cluster;
pub mod diff;
pub mod doctor;
pub mod dump;
pub mod graph;
pub mod init;
pub mod lint;
pub mod plan;
pub mod rewrite_table;
pub mod status;
pub mod validate;