It would be nice if there would be a create_if_not_exists method on Model to automatically create a Model in the database.
I don't see any functionality that can do this right now.
Example
#[derive(Model)]
struct MyTable {
#[ormlite(primary_key)]
pub id: i64
pub val: String
}
MyTable::create_if_not_exists(&mut conn);