schema version changed type

This commit is contained in:
James Bardin 2018-08-15 10:48:00 -04:00 committed by Martin Atkins
parent eeb606425d
commit 88bfbeb9c5
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import (
// ProtoToProviderSchema takes a proto.Schema and converts it to a providers.Schema.
func ProtoToProviderSchema(s *proto.Schema) providers.Schema {
return providers.Schema{
Version: int(s.Version),
Version: uint64(s.Version),
Block: schemaBlock(s.Block),
}
}