Files

13 lines
208 B
Go
Raw Permalink Normal View History

2025-06-29 00:36:30 +08:00
package models
import "time"
type Migration struct {
Version string `gorm:"primaryKey"`
ApplyTime time.Time `gorm:"autoCreateTime"`
}
func (Migration) TableName() string {
return "sys_migration"
}