X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=sql%2FPg-upgrade2-auth%2Fremove_insecurely_hashed_passwords.sql;h=1ea6b449b3d4ae4c899a5f35692f760ed9f8e369;hb=16583fc6fdf047758d57299e7896ceb8c339c5b5;hp=8a75228bf1f55613f546f7796edc5760d9b8939e;hpb=69af50448452e9b292134bee25705a64505e8ff4;p=kivitendo-erp.git diff --git a/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql b/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql index 8a75228bf..1ea6b449b 100644 --- a/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql +++ b/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql @@ -1,7 +1,6 @@ -- @tag: remove_insecurely_hashed_passwords -- @description: Passwörter löschen, die mit unsicheren Hash-Verfahren gehasht wurden -- @depends: release_3_3_0 --- @charset: utf-8 UPDATE auth.user SET password = '*' WHERE (password IS NOT NULL)