mirror of
https://github.com/octoleo/restic.git
synced 2024-11-10 23:31:09 +00:00
8b4dd70013
Just returning that `Migration upgrade cannot be applied: check failed` is not too useful when running `migrate upgrade_repo_v2`.
25 lines
574 B
Go
25 lines
574 B
Go
package migrations
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
)
|
|
|
|
// Migration implements a data migration.
|
|
type Migration interface {
|
|
// Check returns true if the migration can be applied to a repo. If the option is not applicable it can return a specific reason.
|
|
Check(context.Context, restic.Repository) (bool, string, error)
|
|
|
|
RepoCheck() bool
|
|
|
|
// Apply runs the migration.
|
|
Apply(context.Context, restic.Repository) error
|
|
|
|
// Name returns a short name.
|
|
Name() string
|
|
|
|
// Descr returns a description what the migration does.
|
|
Desc() string
|
|
}
|