Fixed sql syntax error in credential migration script
This commit is contained in:
parent
0df651cc0c
commit
35a2d176fa
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@
|
||||||
|
|
||||||
<update tableName="CREDENTIAL">
|
<update tableName="CREDENTIAL">
|
||||||
<column name="ALGORITHM" type="VARCHAR(36)" value="pbkdf2" />
|
<column name="ALGORITHM" type="VARCHAR(36)" value="pbkdf2" />
|
||||||
<where>TYPE in ('password-history', 'password') AND ALGORITHM is 'HmacSHA1'</where>
|
<where>TYPE in ('password-history', 'password') AND ALGORITHM = 'HmacSHA1'</where>
|
||||||
</update>
|
</update>
|
||||||
</changeSet>
|
</changeSet>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue