diff --git a/src/entity/active_model.rs b/src/entity/active_model.rs index afc8bd28..cf679d96 100644 --- a/src/entity/active_model.rs +++ b/src/entity/active_model.rs @@ -719,6 +719,22 @@ impl_into_active_value!(crate::prelude::Decimal); #[cfg_attr(docsrs, doc(cfg(feature = "with-uuid")))] impl_into_active_value!(crate::prelude::Uuid); +#[cfg(feature = "with-time")] +#[cfg_attr(docsrs, doc(cfg(feature = "with-time")))] +impl_into_active_value!(crate::prelude::TimeDate); + +#[cfg(feature = "with-time")] +#[cfg_attr(docsrs, doc(cfg(feature = "with-time")))] +impl_into_active_value!(crate::prelude::TimeTime); + +#[cfg(feature = "with-time")] +#[cfg_attr(docsrs, doc(cfg(feature = "with-time")))] +impl_into_active_value!(crate::prelude::TimeDateTime); + +#[cfg(feature = "with-time")] +#[cfg_attr(docsrs, doc(cfg(feature = "with-time")))] +impl_into_active_value!(crate::prelude::TimeDateTimeWithTimeZone); + impl Default for ActiveValue where V: Into,