forked from forgejo/forgejo
Refactor: Remove Dependencys from Migration v112-v119 (#11811)
* v119 * v116 * v112
This commit is contained in:
parent
aaff47ad75
commit
363e51d19c
3 changed files with 18 additions and 8 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue