pgevolve 0.3.9

Postgres declarative schema management CLI — diff source SQL against a live database and generate reviewable migrations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Cluster-level command implementations.
//!
//! Each module corresponds to one `pgevolve cluster <subcommand>`:
//!
//! - [`init`] — scaffold a new cluster project.
//! - [`diff`] — show the diff between source and live cluster.
//! - [`plan`] — produce a `cluster-plans/<id>/` directory.
//! - [`apply`] — apply a cluster plan directory.
//! - [`status`] — list cluster plans.
//!
//! Stage 10 of `docs/superpowers/plans/2026-05-21-cluster-roles.md`.

pub mod apply;
pub mod diff;
pub mod init;
pub mod plan;
pub mod status;