CREATE TYPE "UserPlan" AS ENUM ('FREE', 'PREMIUM');

ALTER TABLE "User"
ADD COLUMN "plan" "UserPlan" NOT NULL DEFAULT 'FREE';
