2023-05-04 08:13:19 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Upload struct {
|
|
|
|
gorm.Model
|
2023-06-29 10:19:50 +00:00
|
|
|
ID uint `gorm:"primaryKey" gorm:"AUTO_INCREMENT"`
|
2023-05-04 08:13:19 +00:00
|
|
|
AccountID uint `gorm:"index"`
|
|
|
|
Account Account
|
|
|
|
Hash string `gorm:"uniqueIndex"`
|
|
|
|
}
|