mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-20 17:57:54 +00:00
13 lines
208 B
Go
13 lines
208 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Migration struct {
|
|
Version string `gorm:"primaryKey"`
|
|
ApplyTime time.Time `gorm:"autoCreateTime"`
|
|
}
|
|
|
|
func (Migration) TableName() string {
|
|
return "sys_migration"
|
|
}
|