Fixed sql syntax error in credential migration script

This commit is contained in:
Moritz Becker 2016-01-21 17:09:42 +01:00
parent 0df651cc0c
commit 35a2d176fa

View file

@ -117,7 +117,7 @@
<update tableName="CREDENTIAL">
<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>
</changeSet>