Skip to content
Snippets Groups Projects
Commit e3c314c3 authored by srosse's avatar srosse
Browse files

OO-3417: make it compatible with old data without salt and hash algorithm defined

parent 38517df1
No related branches found
No related tags found
No related merge requests found
...@@ -64,9 +64,9 @@ public class AuthenticationHistoryImpl implements CreateInfo, AuthenticationHist ...@@ -64,9 +64,9 @@ public class AuthenticationHistoryImpl implements CreateInfo, AuthenticationHist
private String authusername; private String authusername;
@Column(name="credential", nullable=false, insertable=true, updatable=false) @Column(name="credential", nullable=false, insertable=true, updatable=false)
private String credential; private String credential;
@Column(name="salt", nullable=false, insertable=true, updatable=false) @Column(name="salt", nullable=true, insertable=true, updatable=false)
private String salt; private String salt;
@Column(name="hashalgorithm", nullable=false, insertable=true, updatable=false) @Column(name="hashalgorithm", nullable=true, insertable=true, updatable=false)
private String algorithm; private String algorithm;
@OneToOne(targetEntity=IdentityImpl.class) @OneToOne(targetEntity=IdentityImpl.class)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment