Remove unused

This commit is contained in:
Chris Tsang 2021-06-06 00:30:52 +08:00
parent 58349ee68b
commit 6caf530d21

View File

@ -1,5 +1,4 @@
use crate::{Database, EntityTrait, ExecErr, Iterable, PrimaryKeyToColumn, Value};
use async_trait::async_trait;
use std::fmt::Debug;
#[derive(Clone, Debug, Default)]
@ -45,7 +44,6 @@ where
ActiveValue::unchanged(value)
}
#[async_trait]
pub trait ActiveModelTrait: Clone + Debug {
type Entity: EntityTrait;