瀏覽代碼

Refactor: Remove Dependencys from Migration v112-v119 (#11811)

* v119

* v116

* v112
tags/v1.13.0-rc1
6543 4 年之前
父節點
當前提交
363e51d19c
沒有連結到貢獻者的電子郵件帳戶。
共有 3 個檔案被更改,包括 18 行新增8 行删除
  1. 8
    2
      models/migrations/v112.go
  2. 7
    3
      models/migrations/v116.go
  3. 3
    3
      models/migrations/v119.go

+ 8
- 2
models/migrations/v112.go 查看文件

@@ -5,9 +5,12 @@
package migrations

import (
"fmt"
"os"
"path"

"code.gitea.io/gitea/modules/setting"

"code.gitea.io/gitea/models"
"xorm.io/builder"
"xorm.io/xorm"
)
@@ -27,7 +30,10 @@ func removeAttachmentMissedRepo(x *xorm.Engine) error {
}

for i := 0; i < len(attachments); i++ {
os.RemoveAll(models.AttachmentLocalPath(attachments[i].UUID))
uuid := attachments[i].UUID
if err = os.RemoveAll(path.Join(setting.AttachmentPath, uuid[0:1], uuid[1:2], uuid)); err != nil {
fmt.Printf("Error: %v", err)
}
}

if len(attachments) < 50 {

+ 7
- 3
models/migrations/v116.go 查看文件

@@ -5,12 +5,16 @@
package migrations

import (
"code.gitea.io/gitea/models"

"xorm.io/xorm"
)

func extendTrackedTimes(x *xorm.Engine) error {

type TrackedTime struct {
Time int64 `xorm:"NOT NULL"`
Deleted bool `xorm:"NOT NULL DEFAULT false"`
}

sess := x.NewSession()
defer sess.Close()

@@ -22,7 +26,7 @@ func extendTrackedTimes(x *xorm.Engine) error {
return err
}

if err := sess.Sync2(new(models.TrackedTime)); err != nil {
if err := sess.Sync2(new(TrackedTime)); err != nil {
return err
}


+ 3
- 3
models/migrations/v119.go 查看文件

@@ -5,12 +5,12 @@
package migrations

import (
"code.gitea.io/gitea/modules/structs"

"xorm.io/xorm"
)

func fixMigratedRepositoryServiceType(x *xorm.Engine) error {
_, err := x.Exec("UPDATE repository SET original_service_type = ? WHERE original_url LIKE 'https://github.com/%'", structs.GithubService)
// structs.GithubService:
// GithubService = 2
_, err := x.Exec("UPDATE repository SET original_service_type = ? WHERE original_url LIKE 'https://github.com/%'", 2)
return err
}

Loading…
取消
儲存