feat: add mii gender property to database

will have to create a migration script
This commit is contained in:
trafficlunar 2025-05-05 17:46:32 +01:00
parent 0233d803fc
commit 412b0e775b
3 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,5 @@
-- CreateEnum
CREATE TYPE "MiiGender" AS ENUM ('MALE', 'FEMALE');
-- AlterTable
ALTER TABLE "miis" ADD COLUMN "gender" "MiiGender";