Skip to content

Commit

Permalink
Fix int overflow on go 1.8-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
VojtechVitek committed Dec 9, 2016
1 parent 0498aed commit f9980ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit f9980ce

Please sign in to comment.