Soft delete participants (#1193)

This commit is contained in:
Luke Vella 2024-07-04 10:03:09 +01:00 committed by GitHub
parent 8384128246
commit 6df4405cf4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "participants" ADD COLUMN "deleted" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "deleted_at" TIMESTAMP(3);