Merge pull request #2084 from Sweazer/credential-migration-fix

Fixed sql syntax error in credential migration script
This commit is contained in:
Stian Thorgersen 2016-01-21 19:47:44 +01:00
commit 72ebaca233

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>