diff --git a/tools/anonymize_db.py b/tools/anonymize_db.py index 110e87db..494c61a0 100755 --- a/tools/anonymize_db.py +++ b/tools/anonymize_db.py @@ -157,7 +157,7 @@ def anonymize_users(cursor): cursor.execute("""UPDATE "user" SET token = NULL;""") cursor.execute("""UPDATE "user" SET token_expiration = NULL;""") # Change les noms/prenoms/mail - cursor.execute("""SELECT * FROM "user";""") + cursor.execute("""SELECT * FROM "user" WHERE user_name <> 'admin';""") users = cursor.fetchall() # fetch tout car modifie cette table ds la boucle nb_users = len(users) used_user_names = {u["user_name"] for u in users}