feat: barebones queue

This commit is contained in:
trafficlunar 2026-04-01 02:48:09 +01:00
parent 8608acae31
commit 1dacc3ab4a
4 changed files with 229 additions and 225 deletions

View file

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

View file

@ -76,6 +76,7 @@ model Mii {
description String? @db.VarChar(512)
platform MiiPlatform @default(THREE_DS)
quarantined Boolean @default(false)
in_queue Boolean @default(false)
instructions Json?
gender MiiGender?