package db import ( "fmt" ) // m00001 测试用 type ver00001 struct { } // Version 手动自增,必需唯一 func (ver00001) Version() int32 { return 1 } func (ver00001) Enable() bool { return true } func (p ver00001) Execute() (next bool) { return true } func (p ver00001) Desc() string { return fmt.Sprintf("[migrator - %d] Check OrderTable", p.Version()) }