mirror of
https://github.com/garethgeorge/backrest.git
synced 2025-12-17 19:15:38 +00:00
11 lines
203 B
Go
11 lines
203 B
Go
package migrations
|
|
|
|
import v1 "github.com/garethgeorge/backrest/gen/go/v1"
|
|
|
|
func ApplyMigrations(config *v1.Config) {
|
|
if config.Version <= 1 {
|
|
migration001PrunePolicy(config)
|
|
}
|
|
config.Version = 1
|
|
}
|