Hi, I am seeing an issue with `AttributeOverrides`...
# graphql-kotlin
j
Hi, I am seeing an issue with `AttributeOverrides`:
Copy code
@AttributeOverrides(value = {
    @AttributeOverride(name = "timestamp", column = @Column(name = "tstmp")),
    @AttributeOverride(name = "id", column = @Column(name = "userid"))
})
I am getting
Copy code
an annotation cannot be used as the annotations argument
nvm this was the solution:
Copy code
@AttributeOverrides(
    value = [
        AttributeOverride(name = "timestamp", column = Column(name = "tstmp")),
        AttributeOverride(name = "id", column = Column(name = "userid"))
    ]
)
256 Views