This commit is contained in:
stuzer05 2023-02-24 23:07:48 +02:00
parent 5eea230714
commit db3c697178
1 changed files with 0 additions and 2 deletions

View File

@ -21,7 +21,6 @@ func AddNeedApprovalToActionRun(x *xorm.Engine) error {
return x.Sync(new(ActionRun))
}
// AddTimeEstimateColumnToIssueTable: add TimeEstimate column
func AddTimeEstimateColumnToIssueTable(x *xorm.Engine) error {
type Issue struct {
TimeEstimate int64
@ -30,7 +29,6 @@ func AddTimeEstimateColumnToIssueTable(x *xorm.Engine) error {
return x.Sync(new(Issue))
}
// AddColumnsToCommentTable: add TimeTracked column
func AddColumnsToCommentTable(x *xorm.Engine) error {
type Comment struct {
TimeTracked int64