diff --git a/server/src/badges.rs b/server/src/badges.rs deleted file mode 100644 index ba4b31f..0000000 --- a/server/src/badges.rs +++ /dev/null @@ -1,5 +0,0 @@ -pub struct Badge { - name: String, - permissions: u64, - color: u32, //rgba format -} \ No newline at end of file diff --git a/server/src/db_types.rs b/server/src/db_types.rs index 4119c73..becbf2e 100644 --- a/server/src/db_types.rs +++ b/server/src/db_types.rs @@ -1,3 +1,7 @@ -pub type id = i64; -pub type varchar = String; -pub type ascii_hash = String; \ No newline at end of file +pub type Integer = i32; +pub type UInteger = u32; + +pub type UBigInt = u64; +pub type BigInt = i64; + +pub type VarChar = String; \ No newline at end of file