mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
Fix int overflow on go 1.8-beta1
This commit is contained in:
parent
0498aed91f
commit
f9980cee25
@ -14,7 +14,7 @@ var (
|
||||
ErrNoCurrentVersion = errors.New("no current version found")
|
||||
ErrNoNextVersion = errors.New("no next version found")
|
||||
|
||||
MaxVersion = 9223372036854775807 // max(int64)
|
||||
MaxVersion int64 = 9223372036854775807 // max(int64)
|
||||
|
||||
goMigrations []*Migration
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user