Skip to content

Commit

Permalink
Merge pull request #18 from mickymiek/int-to-int64
Browse files Browse the repository at this point in the history
int to int64 in types.go
  • Loading branch information
ahuret authored Aug 2, 2018
2 parents 6527a2e + da430c4 commit 40142bf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ type Relations []Relation
type Relation struct {
FieldName string
CreateNewFields []map[string]interface{}
CreateExistantFieldsIds []int
CreateExistantFieldsIds []int64
UpdateFields []UpdateField
DeleteFieldsIds []int
RemoveFieldsIds []int
DeleteFieldsIds []int64
RemoveFieldsIds []int64
RemoveAll bool
ReplaceFieldsIds []int
ReplaceFieldsIds []int64
}

type UpdateField struct {
Id int
Id int64
Values map[string]interface{}
}

Expand Down

0 comments on commit 40142bf

Please sign in to comment.