sea-schema-sync 0.17.0-rc.16

🌿 SQL schema definition and discovery
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod column;
mod pg_indexes;
mod table;
mod table_constraints;

pub use column::*;
pub use pg_indexes::*;
pub use table::*;
pub use table_constraints::*;

fn yes_or_no_to_bool(string: &str) -> bool {
    matches!(string.to_uppercase().as_str(), "YES")
}