From b7924c8776d5f35029d8c033701779a2100d5ffb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 15 Nov 2024 05:20:46 +0100 Subject: [PATCH] `core`: Fix r#type in schema --- acrate-core/src/schema.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/acrate-core/src/schema.rs b/acrate-core/src/schema.rs index 4be615f..5cd7157 100644 --- a/acrate-core/src/schema.rs +++ b/acrate-core/src/schema.rs @@ -24,8 +24,7 @@ diesel::table! { document -> Bpchar, pattern -> Bpchar, rel -> Bpchar, - #[sql_name = "type"] - type_ -> Nullable, + r#type -> Nullable, href -> Nullable, } }