From 388bf2cfca054164877d2e68cf1d506e37f62432 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Wed, 20 Oct 2021 15:17:11 +0800 Subject: [PATCH] Fixup --- src/entity/active_enum.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/entity/active_enum.rs b/src/entity/active_enum.rs index c0453dda1..31a65db7a 100644 --- a/src/entity/active_enum.rs +++ b/src/entity/active_enum.rs @@ -14,6 +14,8 @@ use sea_query::{Nullable, Value, ValueType}; /// > See [DeriveActiveEnum](sea_orm_macros::DeriveActiveEnum) for the full specification of macro attributes. /// /// ```rust +/// use sea_orm::entity::prelude::*; +/// /// // Using the derive macro /// #[derive(Debug, PartialEq, DeriveActiveEnum)] /// #[sea_orm(rs_type = "String", db_type = "String(Some(1))")]