mirror of
https://gitee.com/gokins/gokins.git
synced 2024-11-29 17:57:50 +08:00
7 lines
167 B
Go
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"`
|
|
}
|