sqldiff 0.5.0

primitives to auto-generate SQL schema migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod model;
mod connection;
#[cfg(feature = "openapi")]
mod openapi;


pub use model::{
    ToSql,
    Schema,
    Table,
    Type,
    Column,
};
pub use connection::{
    query_schema_columns,
    query_table_names,
    SchemaColumn,
};