removing fluff module and adding sensible database type aliases
This commit is contained in:
parent
5c2c4abd76
commit
d013afe054
@ -1,5 +0,0 @@
|
||||
pub struct Badge {
|
||||
name: String,
|
||||
permissions: u64,
|
||||
color: u32, //rgba format
|
||||
}
|
@ -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;
|
Loading…
Reference in New Issue
Block a user