fix(projects): remove done bucket id field from projects struct
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2024-03-20 09:21:40 +01:00
parent b8584301a3
commit d635fd2dd3
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 3 deletions

View File

@ -52,9 +52,6 @@ type Project struct {
ParentProjectID int64 `xorm:"bigint INDEX null" json:"parent_project_id"`
ParentProject *Project `xorm:"-" json:"-"`
// Deprecated: If tasks are moved to the done bucket, they are marked as done. If they are marked as done individually, they are moved into the done bucket.
DoneBucketID int64 `xorm:"bigint INDEX null" json:"done_bucket_id"`
// The user who created this project.
Owner *user.User `xorm:"-" json:"owner" valid:"-"`