sea_schema/postgres/parser/
mod.rs1mod column;
2mod pg_indexes;
3mod table;
4mod table_constraints;
5
6pub use column::*;
7pub use pg_indexes::*;
8pub use table::*;
9pub use table_constraints::*;
10
11fn yes_or_no_to_bool(string: &str) -> bool {
12 matches!(string.to_uppercase().as_str(), "YES")
13}