From 8805622a3bc30f97939a282e36c80b664fb76a3d Mon Sep 17 00:00:00 2001 From: alemi Date: Fri, 7 Jun 2024 06:37:41 +0200 Subject: [PATCH] fix: dont create fulltext index broken on postgres? will add it later with a migration --- .../m20240524_000001_create_actor_activity_object_tables.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/upub/migrations/src/m20240524_000001_create_actor_activity_object_tables.rs b/upub/migrations/src/m20240524_000001_create_actor_activity_object_tables.rs index fe99306..5213037 100644 --- a/upub/migrations/src/m20240524_000001_create_actor_activity_object_tables.rs +++ b/upub/migrations/src/m20240524_000001_create_actor_activity_object_tables.rs @@ -249,10 +249,6 @@ impl MigrationTrait for Migration { .create_index(Index::create().name("index-objects-in-reply-to").table(Objects::Table).col(Objects::InReplyTo).to_owned()) .await?; - manager - .create_index(Index::create().name("index-objects-content-text").table(Objects::Table).col(Objects::Content).full_text().to_owned()) - .await?; - manager .create_index(Index::create().name("index-objects-context").table(Objects::Table).col(Objects::Context).to_owned()) .await?;