feat(postgres): add support for i128 and u128

This commit is contained in:
Ryan Leckey 2021-04-16 12:01:22 -07:00
parent 3d575495e7
commit d04fcbb2a7

View File

@ -95,8 +95,10 @@ impl_type_int! { i8 => SMALLINT }
impl_type_int! { i16 => SMALLINT }
impl_type_int! { i32 => INTEGER }
impl_type_int! { i64 => BIGINT }
impl_type_int! { i128 => BIGINT }
impl_type_int! { u8 => SMALLINT }
impl_type_int! { u16 => SMALLINT }
impl_type_int! { u32 => INTEGER }
impl_type_int! { u64 => BIGINT }
impl_type_int! { u128 => BIGINT }