Adding support for vector of bytea type in postgres

This commit is contained in:
Augusto 2020-12-04 09:29:17 +01:00 committed by Ryan Leckey
parent c416c94d43
commit ef42bd44bd

View file

@ -68,6 +68,7 @@ impl_database_ext! {
Vec<bool> | &[bool],
Vec<String> | &[String],
Vec<Vec<u8>> | &[Vec<u8>],
Vec<i8> | &[i8],
Vec<i16> | &[i16],
Vec<i32> | &[i32],