feat(views)!: make updating a bucket work again
This commit is contained in:
@ -71,8 +71,13 @@ func (b *Bucket) TableName() string {
|
||||
}
|
||||
|
||||
type TaskBucket struct {
|
||||
BucketID int64 `xorm:"bigint not null index"`
|
||||
TaskID int64 `xorm:"bigint not null index"`
|
||||
BucketID int64 `xorm:"bigint not null index"`
|
||||
TaskID int64 `xorm:"bigint not null index"`
|
||||
ProjectViewID int64 `xorm:"bigint not null index"`
|
||||
}
|
||||
|
||||
func (b *TaskBucket) TableName() string {
|
||||
return "task_buckets"
|
||||
}
|
||||
|
||||
func getBucketByID(s *xorm.Session, id int64) (b *Bucket, err error) {
|
||||
|
Reference in New Issue
Block a user