chore: set addition type as text

refactor/fs
Noah Hsu 2022-06-18 20:10:35 +08:00
parent adf0178bb7
commit dd46e99e66
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ type Account struct {
Index int `json:"index"` // use to sort
Driver string `json:"driver"`
Status string `json:"status"`
Addition string `json:"addition"` // Additional information, defined in the corresponding driver
Addition string `json:"addition" gorm:"type:text"` // Additional information, defined in the corresponding driver
Remark string `json:"remark"`
Modified time.Time `json:"modified"`
Sort