mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-06-27 22:24:14 +00:00
feat: barebones queue
This commit is contained in:
parent
8608acae31
commit
1dacc3ab4a
4 changed files with 229 additions and 225 deletions
2
prisma/migrations/20260401000000_queue/migration.sql
Normal file
2
prisma/migrations/20260401000000_queue/migration.sql
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "miis" ADD COLUMN "in_queue" BOOLEAN NOT NULL DEFAULT false;
|
||||
|
|
@ -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?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue