* refactor backup Update upgrade texts * Restore Failed Upgrade to EE to initial CE version * Store version before upgrading * Check rollback command line * Fix version display * Update template url only for CE 1.xx * Fix comments * revert go modules * remove duplicate migration * remove unused files
9 lines
176 B
Go
9 lines
176 B
Go
package errors
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrObjectNotFound = errors.New("Object not found inside the database")
|
|
ErrMigrationToCE = errors.New("DB is already on CE edition")
|
|
)
|