mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 09:22:51 +08:00
26 lines
554 B
Go
26 lines
554 B
Go
|
package store
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type MigrationHistory struct {
|
||
|
Version string
|
||
|
CreatedTs int64
|
||
|
}
|
||
|
|
||
|
type UpsertMigrationHistory struct {
|
||
|
Version string
|
||
|
}
|
||
|
|
||
|
type FindMigrationHistory struct {
|
||
|
}
|
||
|
|
||
|
func (s *Store) FindMigrationHistoryList(ctx context.Context, find *FindMigrationHistory) ([]*MigrationHistory, error) {
|
||
|
return s.driver.FindMigrationHistoryList(ctx, find)
|
||
|
}
|
||
|
|
||
|
func (s *Store) UpsertMigrationHistory(ctx context.Context, upsert *UpsertMigrationHistory) (*MigrationHistory, error) {
|
||
|
return s.driver.UpsertMigrationHistory(ctx, upsert)
|
||
|
}
|