fixed DB mapping

pull/708/merge
Justin Richer 2015-03-17 19:21:30 -04:00
parent ff958e20b6
commit b635a2bc88
1 changed files with 2 additions and 2 deletions

View File

@ -130,9 +130,9 @@ public class Claim {
* @return the issuer * @return the issuer
*/ */
@ElementCollection(fetch = FetchType.EAGER) @ElementCollection(fetch = FetchType.EAGER)
@Column(name = "claim_issuer") @Column(name = "issuer")
@CollectionTable( @CollectionTable(
name = "issuer", name = "claim_issuer",
joinColumns = @JoinColumn(name = "owner_id") joinColumns = @JoinColumn(name = "owner_id")
) )
public Set<String> getIssuer() { public Set<String> getIssuer() {