pub struct Field {
pub name:&'static str,
pub date_type:FieldType,
pub max_length:Option<u32>,
pub pk:bool,
pub auto_increment:bool,
pub fk_model_no:Option<FkNo>,
pub null:bool,
pub remark:Option<&'static str>,
}
pub enum FieldType{
Text,
Number,
Date,
Time,
DateTime,
Other(&'static str)
}
pub enum FkNo{
One,
Two,
Three,
Four,
Five,
Six,
Seven,
Eight,
Night,
The
}