freechat/server/src/db_types.rs
2020-08-08 00:31:12 -07:00

8 lines
101 B
Rust

pub type Integer = i32;
pub type UBigInt = u64;
pub type BigInt = i64;
pub type VarChar = String;