-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(anonymisation): anonymiser les utiliseurs quand on le supprime e…
…n mettant leur initiales (#1480)
- Loading branch information
1 parent
f7f0d8a
commit 831c37a
Showing
6 changed files
with
39 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
targets/hasura/migrations/default/1727349866123_put_back_users_initials/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-- alter table "contribution"."answers" alter column "display_date" drop not null; |
15 changes: 15 additions & 0 deletions
15
targets/hasura/migrations/default/1727349866123_put_back_users_initials/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
UPDATE auth.users | ||
SET name = 'CL' | ||
WHERE id = '62a6e4c1-2624-4dfb-b984-0d206ec8a43e'; | ||
|
||
UPDATE auth.users | ||
SET name = 'FD' | ||
WHERE id = '474702f8-7f7e-4f05-92b2-45796a075e0f'; | ||
|
||
UPDATE auth.users | ||
SET name = 'AB' | ||
WHERE id = '1baef8d6-e871-46b4-8150-1f587b9f56cd'; | ||
|
||
UPDATE auth.users | ||
SET name = 'CL' | ||
WHERE id = 'aa6d1721-71e5-42a8-bf26-98f453d1fab5'; |