mosh-helpdesk/server/prisma/migrations/20260210200100_change_role_to_enum/migration.sql
2026-02-10 12:13:22 -08:00

8 lines
272 B
SQL

-- CreateEnum
CREATE TYPE "Role" AS ENUM ('admin', 'agent');
-- AlterTable (cast existing text values to the new enum)
ALTER TABLE "user" ALTER COLUMN "role" DROP DEFAULT,
ALTER COLUMN "role" TYPE "Role" USING "role"::"Role",
ALTER COLUMN "role" SET DEFAULT 'agent';