drizzle-cli 0.1.7

Command-line interface for drizzle-rs migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! CLI command implementations
//!
//! Each command module implements a specific drizzle CLI command.

pub mod check;
pub mod export;
pub mod generate;
pub mod harness;
pub mod introspect;
pub mod migrate;
pub mod new;
pub mod overrides;
pub mod push;
pub mod status;
pub mod upgrade;