From e88f95e501ee70fa96742571fb2acf8352918ceb Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 21 Apr 2024 13:50:03 +0200 Subject: [PATCH] fix(migration): remove buckets table name when dropping index Related to https://kolaente.dev/vikunja/vikunja/issues/2243 --- pkg/migration/20240315093418.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/migration/20240315093418.go b/pkg/migration/20240315093418.go index 0a045e3c8..b7786177d 100644 --- a/pkg/migration/20240315093418.go +++ b/pkg/migration/20240315093418.go @@ -99,7 +99,7 @@ insert into buckets_dg_tmp(id, title, "limit", position, created, updated, creat select id, title, "limit", position, created, updated, created_by_id, project_view_id from buckets; -drop index if exists buckets.UQE_buckets_id; +drop index if exists UQE_buckets_id; drop table buckets;