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