Files
quicklanch-server/prisma/schema/plan.prisma
T

18 lines
331 B
Plaintext
Raw Normal View History

2026-04-07 22:32:13 +06:00
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[]
}