sqldiff 0.5.0

primitives to auto-generate SQL schema migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(unused)]

//
// Given a OpenAPI spec, a connection to a database, and the schema within that database,
// - build a diff
// - Execute SQL

mod schema;
mod migrate;

pub use migrate::*;
pub use schema::*;