memos/store/migration_history.go

14 lines
177 B
Go
Raw Normal View History

2023-11-06 08:33:31 +08:00
package store
type MigrationHistory struct {
Version string
CreatedTs int64
}
type UpsertMigrationHistory struct {
Version string
}
type FindMigrationHistory struct {
}