// BASE MODELS
use fully_pub::fully_pub;
#[derive(Debug)]
#[fully_pub]
struct Model {
module_path: Vec<String>,
name: String,
table_name: String,
fields: Vec<Field>
}
struct Field {
rust_type: String,
is_nullable: bool,
is_unique: bool,
is_primary: bool