mirror of https://github.com/pressly/goose.git
refactor: Use math.MaxInt64 const as MaxVersion instead of hardcode number (#441)
Signed-off-by: Sasha Melentyev <sasha@melentyev.io> Signed-off-by: Sasha Melentyev <sasha@melentyev.io>pull/443/head
parent
1939e6175b
commit
81d44b3095
|
@ -5,6 +5,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/fs"
|
"io/fs"
|
||||||
|
"math"
|
||||||
"path"
|
"path"
|
||||||
"runtime"
|
"runtime"
|
||||||
"sort"
|
"sort"
|
||||||
|
@ -17,7 +18,7 @@ var (
|
||||||
// ErrNoNextVersion when the next migration version is not found.
|
// ErrNoNextVersion when the next migration version is not found.
|
||||||
ErrNoNextVersion = errors.New("no next version found")
|
ErrNoNextVersion = errors.New("no next version found")
|
||||||
// MaxVersion is the maximum allowed version.
|
// MaxVersion is the maximum allowed version.
|
||||||
MaxVersion int64 = 9223372036854775807 // max(int64)
|
MaxVersion int64 = math.MaxInt64
|
||||||
|
|
||||||
registeredGoMigrations = map[int64]*Migration{}
|
registeredGoMigrations = map[int64]*Migration{}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue