1
0

fix(db migration): do not try to create a unique index

Related to https://kolaente.dev/vikunja/vikunja/issues/2243
This commit is contained in:
kolaente
2024-06-04 08:45:39 +02:00
parent c17e4564e7
commit a38e768895

View File

@ -23,7 +23,7 @@ import (
) )
type buckets20240315093418 struct { 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"` ProjectID int64 `xorm:"bigint not null"`
ProjectViewID int64 `xorm:"bigint not null default 0"` ProjectViewID int64 `xorm:"bigint not null default 0"`
} }