pub trait SQLColumnInfo: Send + Sync {
// Required methods
fn is_not_null(&self) -> bool;
fn is_primary_key(&self) -> bool;
fn is_unique(&self) -> bool;
fn name(&self) -> &'static str;
fn type(&self) -> &'static str;
fn has_default(&self) -> bool;
fn table(&self) -> &'static dyn SQLTableInfo;
}