feat(backend): add DELETE /users/@me endpoint
This commit is contained in:
parent
c4b8b26ec7
commit
ff3d612b06
9 changed files with 162 additions and 45 deletions
10
scripts/migrate/005_delete_users.sql
Normal file
10
scripts/migrate/005_delete_users.sql
Normal file
|
@ -0,0 +1,10 @@
|
|||
-- +migrate Up
|
||||
|
||||
-- 2023-03-07: add delete functionality
|
||||
|
||||
-- if not null, the user is soft deleted
|
||||
alter table users add column deleted_at timestamptz;
|
||||
-- if true, the user deleted their account themselves + should have option to reactivate; should also be deleted after 30 days
|
||||
alter table users add column self_delete boolean;
|
||||
-- delete reason if the user was deleted by a moderator
|
||||
alter table users add column delete_reason text;
|
Loading…
Add table
Add a link
Reference in a new issue