enum PType { FREE STANDARD PRO } model Plan { id String @id @default(uuid()) planName String price Int planType PType planDesc String planFeatures Json createdAt DateTime @default(now()) updatedAt DateTime @updatedAt account Account[] }