atadb 0.1.0

atadb will be a simple but fast relational database that supports a subset of SQL
Documentation
use tables::data_type::DataType;
use util::name::Name;

#[derive(Debug, Serialize, Deserialize)]
pub struct Column {
    name: Name,
    typ: DataType,
    nullable: bool,
}

impl Column {
    pub fn new(name: Name, typ: DataType) -> Self {
        Column {
            name,
            typ,
            nullable: false,
        }
    }
}