-- CreateEnum CREATE TYPE "CustomerRole" AS ENUM ('KUNDE', 'ADMIN'); -- AlterTable ALTER TABLE "customers" ADD COLUMN "role" "CustomerRole" NOT NULL DEFAULT 'KUNDE';