Closed
Description
Hi there. I see that PR #62 hasn't been merged yet. Do you know guys other workarounds to add indexes for nested fields?
Let's say I have approximately the following structure:
type MyStruct struct {
ID int
External ExternalDependency
YetAnotherDependency []AnotherDependency
}
type ExternalDependency struct {
ExternalID string
}
type AnotherDependency struct {
CustomID string
}
How to add indexes for ExternalID
and CustomID
?