From 8ecb4fccba3bc7eca807899996071069fccf2363 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Thu, 15 Sep 2022 15:40:34 +0800 Subject: [PATCH] Implement `IntoActiveValue` for `Vec` types --- src/entity/active_model.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/entity/active_model.rs b/src/entity/active_model.rs index cf679d96..0603662c 100644 --- a/src/entity/active_model.rs +++ b/src/entity/active_model.rs @@ -682,6 +682,7 @@ impl_into_active_value!(f32); impl_into_active_value!(f64); impl_into_active_value!(&'static str); impl_into_active_value!(String); +impl_into_active_value!(Vec); #[cfg(feature = "with-json")] #[cfg_attr(docsrs, doc(cfg(feature = "with-json")))]