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
Sasha Melentyev 2023-01-18 16:47:50 +03:00 committed by GitHub
parent 1939e6175b
commit 81d44b3095
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import (
"errors"
"fmt"
"io/fs"
"math"
"path"
"runtime"
"sort"
@ -17,7 +18,7 @@ var (
// ErrNoNextVersion when the next migration version is not found.
ErrNoNextVersion = errors.New("no next version found")
// MaxVersion is the maximum allowed version.
MaxVersion int64 = 9223372036854775807 // max(int64)
MaxVersion int64 = math.MaxInt64
registeredGoMigrations = map[int64]*Migration{}
)