fix(db migration): do not try to create a unique index
All checks were successful
continuous-integration/drone/push Build is passing

Related to #2243
This commit is contained in:
kolaente 2024-06-04 08:45:39 +02:00
parent c17e4564e7
commit a38e768895
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -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"`
}