1 2 3 4 5 6 7 8 9
#[cfg(feature = "postgres")] pub type Serial = i32; pub type Integer = i32; pub type Text = String; pub type Float = f64; pub type Date = String; pub type DateTime = String; pub type Boolean = i32;