gokins/model/schema_migrations.go

7 lines
167 B
Go
Raw Permalink Normal View History

2021-07-22 10:53:38 +08:00
package model
type SchemaMigrations struct {
Version int64 `xorm:"not null pk BIGINT(20)" json:"version"`
Dirty int `xorm:"not null TINYINT(1)" json:"dirty"`
}