Anonymize club emails

This commit is contained in:
Yohann D'ANELLO 2020-07-30 13:12:06 +02:00
parent 4cb2fbb2a1
commit 79afabf81b
1 changed files with 2 additions and 0 deletions

View File

@ -19,4 +19,6 @@ class Command(BaseCommand):
"first_name = 'Anne', "
"last_name = 'Onyme', "
"email = 'anne@ony.me';")
cur.execute("UPDATE member_club SET "
"email = 'anne@ony.me';")
cur.close()