migrationTool.go 446 B

123456789101112131415161718
  1. /*
  2. * @Author: LinkLeong link@icewhale.org
  3. * @Date: 2022-08-24 17:37:36
  4. * @LastEditors: LinkLeong
  5. * @LastEditTime: 2022-08-24 17:38:48
  6. * @FilePath: /CasaOS/interfaces/migrationTool.go
  7. * @Description:
  8. * @Website: https://www.casaos.io
  9. * Copyright (c) 2022 by icewhale, All Rights Reserved.
  10. */
  11. package interfaces
  12. type MigrationTool interface {
  13. IsMigrationNeeded() (bool, error)
  14. PostMigrate() error
  15. Migrate() error
  16. PreMigrate() error
  17. }