mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-03-28 19:23:15 +00:00
5 lines
137 B
SQL
5 lines
137 B
SQL
-- CreateEnum
|
|
CREATE TYPE "MiiGender" AS ENUM ('MALE', 'FEMALE');
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "miis" ADD COLUMN "gender" "MiiGender";
|