2024-12-05 15:07:53 +02:00
|
|
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
2025-06-27 07:59:55 +02:00
|
|
|
package v1_23
|
2024-12-05 15:07:53 +02:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func AddTimeEstimateColumnToIssueTable(x *xorm.Engine) error {
|
|
|
|
|
type Issue struct {
|
|
|
|
|
TimeEstimate int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
|
|
|
}
|
2025-04-26 09:50:45 -07:00
|
|
|
_, err := x.SyncWithOptions(xorm.SyncOptions{
|
|
|
|
|
IgnoreConstrains: true,
|
|
|
|
|
IgnoreIndices: true,
|
|
|
|
|
}, new(Issue))
|
|
|
|
|
return err
|
2024-12-05 15:07:53 +02:00
|
|
|
}
|