pub trait ColumnDefExt {
    fn is_nullable(&self) -> bool;
    fn get_default(&self) -> Option<&Expr>;
}

Required Methods

Implementors