A struct that is Insertable is expected to have same fields as the model, excluding fields
that have sane defaults at the database level. Concretely, if you have a Person struct:
#[derive(ormlitex::Model)]
struct Person {
id: i32,
name: String,
age: i32,
}