refactor: rename ProtocolType

This commit is contained in:
Derrick Hammer 2024-01-16 00:53:39 -05:00
parent f986e3e483
commit 441e07f00e
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 5 additions and 5 deletions

View File

@ -4,9 +4,9 @@ import "gorm.io/gorm"
type Upload struct {
gorm.Model
UserID uint
Hash string
ProtocolType string
User User
UploaderIP string
UserID uint
Hash string
Protocol string
User User
UploaderIP string
}