Fix int overflow on go 1.8-beta1

pull/15/head v1.0
Vojtech Vitek 2016-12-09 13:06:30 -05:00
parent 0498aed91f
commit f9980cee25
1 changed files with 1 additions and 1 deletions

View File

@ -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
)