Fix panic

pull/55/head
Vojtech Vitek 2017-06-20 15:00:29 -04:00
parent 28a7ddbabe
commit d10e0e5458
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ var (
// MaxVersion is the maximum allowed version. // MaxVersion is the maximum allowed version.
MaxVersion int64 = 9223372036854775807 // max(int64) MaxVersion int64 = 9223372036854775807 // max(int64)
registeredGoMigrations map[int64]*Migration registeredGoMigrations = map[int64]*Migration{}
) )
// Migrations slice. // Migrations slice.