gokins/model/schema_migrations.go
2021-07-22 10:53:38 +08:00

7 lines
167 B
Go

package model
type SchemaMigrations struct {
Version int64 `xorm:"not null pk BIGINT(20)" json:"version"`
Dirty int `xorm:"not null TINYINT(1)" json:"dirty"`
}