HotTRDealsBackend/prisma/migrations/20260123184800_user_role/migration.sql
2026-01-25 17:50:56 +00:00

6 lines
163 B
SQL

-- CreateEnum
CREATE TYPE "UserRole" AS ENUM ('USER', 'MOD', 'ADMIN');
-- AlterTable
ALTER TABLE "User" ADD COLUMN "role" "UserRole" NOT NULL DEFAULT 'USER';