feat: fix the Unicode filename encoding bug in storage provider (#1518)

This commit is contained in:
wht
2023-02-04 18:09:18 +08:00
committed by GitHub
parent 8698f4111a
commit fcc75dd3be
2 changed files with 7 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import (
type Resource struct {
Owner string `xorm:"varchar(100) notnull pk" json:"owner"`
Name string `xorm:"varchar(100) notnull pk" json:"name"`
Name string `xorm:"varchar(180) notnull pk" json:"name"`
CreatedTime string `xorm:"varchar(100)" json:"createdTime"`
User string `xorm:"varchar(100)" json:"user"`