mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-18 13:54:12 +02:00
feat(db): add manual verification
This commit is contained in:
parent
4c5e0238b8
commit
905d9f4811
@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "Verify" ADD COLUMN "manual" BOOLEAN NOT NULL DEFAULT false;
|
@ -63,6 +63,7 @@ model Verify {
|
||||
joinTime DateTime @default(now())
|
||||
startTime 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
|
||||
//complete Boolean @default(false) // If the verification was incomplete
|
||||
// Roles they got from verification
|
||||
|
Loading…
x
Reference in New Issue
Block a user