removing fluff module and adding sensible database type aliases

This commit is contained in:
shockrah 2020-07-13 19:40:37 -07:00
parent 5c2c4abd76
commit d013afe054
2 changed files with 7 additions and 8 deletions

View File

@ -1,5 +0,0 @@
pub struct Badge {
name: String,
permissions: u64,
color: u32, //rgba format
}

View File

@ -1,3 +1,7 @@
pub type id = i64;
pub type varchar = String;
pub type ascii_hash = String;
pub type Integer = i32;
pub type UInteger = u32;
pub type UBigInt = u64;
pub type BigInt = i64;
pub type VarChar = String;