slash-e/store/migration_history.go
2023-12-17 13:56:41 +08:00

14 lines
177 B
Go

package store
type MigrationHistory struct {
Version string
CreatedTs int64
}
type UpsertMigrationHistory struct {
Version string
}
type FindMigrationHistory struct {
}