10 lines
157 B
Go
10 lines
157 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type StaticFile struct {
|
|
gorm.Model
|
|
Name string `gorm:"not null"`
|
|
Path string `gorm:"not null;index;uniqueIndex"`
|
|
}
|