FromJsonQueryResult: add missing module prefix to sea_query (#1081)

This commit is contained in:
Nick Burrett 2022-09-29 03:47:08 +01:00 committed by GitHub
parent aecdeafeee
commit 9eacecd364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ pub fn expand_derive_from_json_query_result(ident: Ident) -> syn::Result<TokenSt
}
#[automatically_derived]
impl sea_query::ValueType for #ident {
impl sea_orm::sea_query::ValueType for #ident {
fn try_from(v: sea_orm::Value) -> Result<Self, sea_orm::sea_query::ValueTypeErr> {
match v {
sea_orm::Value::Json(Some(json)) => Ok(