19 lines
446 B
Go
19 lines
446 B
Go
|
/*
|
||
|
* @Author: LinkLeong link@icewhale.org
|
||
|
* @Date: 2022-08-24 17:37:36
|
||
|
* @LastEditors: LinkLeong
|
||
|
* @LastEditTime: 2022-08-24 17:38:48
|
||
|
* @FilePath: /CasaOS/interfaces/migrationTool.go
|
||
|
* @Description:
|
||
|
* @Website: https://www.casaos.io
|
||
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
||
|
*/
|
||
|
package interfaces
|
||
|
|
||
|
type MigrationTool interface {
|
||
|
IsMigrationNeeded() (bool, error)
|
||
|
PostMigrate() error
|
||
|
Migrate() error
|
||
|
PreMigrate() error
|
||
|
}
|