Files
memos/store/migration_history.go
2025-11-30 13:01:24 -05:00

14 lines
177 B
Go

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