rusql-alchemy 0.3.0-rc

Rust Alchemy is Django ORM like lib for Rust
Documentation
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;