feat(db): add manual verification

This commit is contained in:
smyalygames 2023-02-20 13:09:24 +00:00
parent 4c5e0238b8
commit 905d9f4811
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Verify" ADD COLUMN "manual" BOOLEAN NOT NULL DEFAULT false;

View File

@ -63,6 +63,7 @@ model Verify {
joinTime DateTime @default(now()) joinTime DateTime @default(now())
startTime DateTime? startTime DateTime?
finishTime DateTime? finishTime DateTime?
manual Boolean @default(false) // If they were verified with the verify command
timedOut Boolean @default(false) // If they got kicked out of verification because they timed out timedOut Boolean @default(false) // If they got kicked out of verification because they timed out
//complete Boolean @default(false) // If the verification was incomplete //complete Boolean @default(false) // If the verification was incomplete
// Roles they got from verification // Roles they got from verification