13 lines
274 B
Go
13 lines
274 B
Go
|
package database
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// ErrNotConnected - database is not connected
|
||
|
ErrNotConnected = errors.New("database is not connected")
|
||
|
// ErrNothingToMigrate if nothing has to be migrated
|
||
|
ErrNothingToMigrate = errors.New("there is nothing to migrate")
|
||
|
)
|