1
2
3
4
5
6
7
8
9
10
11
mod column;
mod table;
mod table_constraints;

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

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