A struct that is Insert 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(ormlite::Model)]
struct Person {
id: i32,
name: String,
age: i32,
}