github.com/binbinly/pkg@v0.0.11-0.20240321014439-f4fbf666eb0f/storage/orm/migrate.go (about) 1 package orm 2 3 import "time" 4 5 // Migration 数据迁移 6 type Migration struct { 7 Version string `gorm:"primaryKey"` 8 ApplyTime time.Time `gorm:"autoCreateTime"` 9 } 10 11 // TableName 表名 12 func (Migration) TableName() string { 13 return "migration" 14 }