From 81d44b309504a6683c4c818c907ad13cbd9d18a3 Mon Sep 17 00:00:00 2001 From: Sasha Melentyev Date: Wed, 18 Jan 2023 16:47:50 +0300 Subject: [PATCH] refactor: Use math.MaxInt64 const as MaxVersion instead of hardcode number (#441) Signed-off-by: Sasha Melentyev Signed-off-by: Sasha Melentyev --- migrate.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/migrate.go b/migrate.go index 91da07d..a4cf399 100644 --- a/migrate.go +++ b/migrate.go @@ -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{} )