From a38e768895a9343569eb512ca9d0cce2726c6b6f Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 4 Jun 2024 08:45:39 +0200 Subject: [PATCH] fix(db migration): do not try to create a unique 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 b7786177d..bc685c379 100644 --- a/pkg/migration/20240315093418.go +++ b/pkg/migration/20240315093418.go @@ -23,7 +23,7 @@ import ( ) type buckets20240315093418 struct { - ID int64 `xorm:"bigint autoincr not null unique pk"` + ID int64 `xorm:"bigint autoincr not null"` ProjectID int64 `xorm:"bigint not null"` ProjectViewID int64 `xorm:"bigint not null default 0"` }