-- CreateEnum
CREATE TYPE "public"."Status" AS ENUM ('active', 'inactive');

-- AlterTable
ALTER TABLE "public"."User" ADD COLUMN     "status" "public"."Status" NOT NULL DEFAULT 'active';
